Fix indentation in ToplevelStarlarkAspectFunction.java

PiperOrigin-RevId: 689394460
Change-Id: Ibb05fec8c5e29777265fc68d0e50d4c859d74b0d
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelStarlarkAspectFunction.java b/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelStarlarkAspectFunction.java
index 07d55b5..01ccddb 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelStarlarkAspectFunction.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/ToplevelStarlarkAspectFunction.java
@@ -95,10 +95,10 @@
       try {
         AspectValue value =
             (AspectValue) result.getOrThrow(aspectKey, ActionConflictException.class);
-      if (value == null) {
-        return null;
-      }
-      valuesMap.put(aspectKey, value);
+        if (value == null) {
+          return null;
+        }
+        valuesMap.put(aspectKey, value);
       } catch (ActionConflictException e) {
         // Required in case of skymeld: the AspectKey isn't accessible from the BuildDriverKey.
         throw new TopLevelStarlarkAspectFunctionException(
@@ -132,9 +132,7 @@
 
     AspectKey aspectKey =
         AspectKeyCreator.createAspectKey(
-            aspect.getAspectDescriptor(),
-            dependentAspects.build(),
-            topLevelTargetKey);
+            aspect.getAspectDescriptor(), dependentAspects.build(), topLevelTargetKey);
     result.put(aspectKey.getAspectDescriptor(), aspectKey);
     return aspectKey;
   }