diff artifacts/src/main/java/org/dive4elements/river/artifacts/model/FlowVelocityFilterFacet.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 e4606eae8ea5
children 0a5239a1e46e
line wrap: on
line diff
--- a/artifacts/src/main/java/org/dive4elements/river/artifacts/model/FlowVelocityFilterFacet.java	Thu Jan 18 20:10:59 2018 +0100
+++ b/artifacts/src/main/java/org/dive4elements/river/artifacts/model/FlowVelocityFilterFacet.java	Thu Jan 18 20:12:01 2018 +0100
@@ -28,7 +28,8 @@
  */
 public class FlowVelocityFilterFacet extends DataFacet {
 
-    private static Logger log = Logger.getLogger(FlowVelocityFilterFacet.class);
+    private static Logger log = Logger.getLogger(
+        FlowVelocityFilterFacet.class);
 
     public FlowVelocityFilterFacet() {
         // required for clone operation deepCopy()
@@ -70,9 +71,12 @@
             FlowVelocityData oldData = data[index];
             FlowVelocityData newData = new FlowVelocityData();
             double[][] q = oldData.getQPoints();
-            double[][] totalV = MovingAverage.weighted(oldData.getTotalChannelPoints(), radius);
-            double[][] mainV = MovingAverage.weighted(oldData.getMainChannelPoints(), radius);
-            double[][] tau = MovingAverage.weighted(oldData.getTauPoints(), radius);
+            double[][] totalV = MovingAverage.weighted(
+                oldData.getTotalChannelPoints(), radius);
+            double[][] mainV = MovingAverage.weighted(
+                oldData.getMainChannelPoints(), radius);
+            double[][] tau = MovingAverage.weighted(
+                oldData.getTauPoints(), radius);
             for(int j = 0; j < q[0].length; j++) {
                 newData.addKM(q[0][j]);
                 newData.addQ(q[1][j]);

http://dive4elements.wald.intevation.org