diff gwt-client/src/main/java/org/dive4elements/river/client/shared/model/ToLoad.java @ 8856:5e38e2924c07 3.2.x

Fix code style.
author Tom Gottfried <tom@intevation.de>
date Thu, 18 Jan 2018 20:12:01 +0100
parents b1f446f675b1
children 84397da33d17
line wrap: on
line diff
--- a/gwt-client/src/main/java/org/dive4elements/river/client/shared/model/ToLoad.java	Thu Jan 18 20:10:59 2018 +0100
+++ b/gwt-client/src/main/java/org/dive4elements/river/client/shared/model/ToLoad.java	Thu Jan 18 20:12:01 2018 +0100
@@ -40,7 +40,9 @@
                 return false;
             }
             StringTriple other = (StringTriple) o;
-            return second.equals(other.second) && first.equals(other.first) && third.equals(other.third);
+            return second.equals(other.second)
+                && first.equals(other.first)
+                && third.equals(other.third);
         }
     }
     public static final String SYNTHETIC_KEY = "key-";
@@ -89,7 +91,8 @@
             artifactName = uniqueKey(artifacts);
         }
 
-        Map<StringTriple, ArtifactFilter> artifact = artifacts.get(artifactName);
+        Map<StringTriple, ArtifactFilter> artifact = artifacts.get(
+            artifactName);
 
         if (artifact == null) {
             artifact = new HashMap<StringTriple, ArtifactFilter>();
@@ -99,7 +102,8 @@
         ArtifactFilter filter = artifact.get(factory);
         if (filter == null) {
             filter = new ArtifactFilter(factory);
-            artifact.put(new StringTriple(factory, displayName, targetOut), filter);
+            artifact.put(new StringTriple(
+                    factory, displayName, targetOut), filter);
         }
 
         filter.add(out, name, ids);

http://dive4elements.wald.intevation.org