Format with google-java-format 1.7

Change-Id: I2a83f6c305292b6b190d489e07fead2a9f128564
diff --git a/src/main/java/com/googlesource/gerrit/plugins/simplesubmitrules/config/ConfigTranslator.java b/src/main/java/com/googlesource/gerrit/plugins/simplesubmitrules/config/ConfigTranslator.java
index 64e2aa9..9904b13 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/simplesubmitrules/config/ConfigTranslator.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/simplesubmitrules/config/ConfigTranslator.java
@@ -143,10 +143,7 @@
         // labels to be able to modify it locally.
         Map<String, LabelType> copiedLabelTypes = projectConfig.getLabelSections();
         ProjectState projectState = projectCache.checkedGet(projectConfig.getName());
-        projectState
-            .getLabelTypes()
-            .getLabelTypes()
-            .stream()
+        projectState.getLabelTypes().getLabelTypes().stream()
             .filter(l -> l.getName().equals(entry.getKey()))
             .filter(l -> l.canOverride())
             .forEach(l -> copiedLabelTypes.put(l.getName(), copyLabelType(l)));