commit | ad7dae3ad3b31f44eb9a5e743daefccca1f544a3 | [log] [tgz] |
---|---|---|
author | Googler <noreply@google.com> | Thu Apr 14 11:22:48 2022 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Apr 14 11:24:19 2022 -0700 |
tree | a10779f2cd10a8d5d0a507c109640f44a9fbbd46 | |
parent | 563d12aa48c759d2019462f63906d775a0333437 [diff] |
Automatic code cleanup. PiperOrigin-RevId: 441810505
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/serialization/ObjectCodecRegistry.java b/src/main/java/com/google/devtools/build/lib/skyframe/serialization/ObjectCodecRegistry.java index 0d29b5a..0a800ea 100644 --- a/src/main/java/com/google/devtools/build/lib/skyframe/serialization/ObjectCodecRegistry.java +++ b/src/main/java/com/google/devtools/build/lib/skyframe/serialization/ObjectCodecRegistry.java
@@ -144,7 +144,8 @@ * * <p>Also checks if there are codecs for a superclass of the given type. */ - private @Nullable CodecDescriptor getCodecDescriptor(Class<?> type) { + @Nullable + private CodecDescriptor getCodecDescriptor(Class<?> type) { for (Class<?> nextType = type; nextType != null; nextType = nextType.getSuperclass()) { CodecDescriptor result = classMappedCodecs.get(nextType); if (result != null) {