diff flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FlowVelocityAccess.java @ 3258:3c006a53e551

Replaced tabs with four spaces each. flys-artifacts/trunk@4895 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sun, 08 Jul 2012 08:43:13 +0000
parents cdbc457e23e2
children 9422b559b2d5
line wrap: on
line diff
--- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FlowVelocityAccess.java	Sun Jul 08 07:56:46 2012 +0000
+++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FlowVelocityAccess.java	Sun Jul 08 08:43:13 2012 +0000
@@ -5,50 +5,50 @@
 
 public class FlowVelocityAccess extends Access {
 
-	private int[] mainChannels;
-	private int[] totalChannels;
+    private int[] mainChannels;
+    private int[] totalChannels;
 
-	private Double lowerKM;
-	private Double upperKM;
+    private Double lowerKM;
+    private Double upperKM;
 
 
-	public FlowVelocityAccess(FLYSArtifact artifact) {
-		super(artifact);
-	}
+    public FlowVelocityAccess(FLYSArtifact artifact) {
+        super(artifact);
+    }
 
 
-	public int[] getMainChannels() {
-		if (mainChannels == null) {
-			mainChannels = getIntArray("main.channel");
-		}
+    public int[] getMainChannels() {
+        if (mainChannels == null) {
+            mainChannels = getIntArray("main.channel");
+        }
 
-		return mainChannels;
+        return mainChannels;
     }
 
 
     public int[] getTotalChannels() {
-    	if (totalChannels == null) {
-    		totalChannels = getIntArray("total.channel");
-    	}
+        if (totalChannels == null) {
+            totalChannels = getIntArray("total.channel");
+        }
 
-    	return totalChannels;
+        return totalChannels;
     }
 
 
     public Double getLowerKM() {
-    	if (lowerKM == null) {
-    		lowerKM = getDouble("ld_from");
-    	}
+        if (lowerKM == null) {
+            lowerKM = getDouble("ld_from");
+        }
 
-    	return lowerKM;
+        return lowerKM;
     }
 
 
     public Double getUpperKM() {
-    	if (upperKM == null) {
-    		upperKM = getDouble("ld_to");
-    	}
+        if (upperKM == null) {
+            upperKM = getDouble("ld_to");
+        }
 
-    	return upperKM;
+        return upperKM;
     }
 }

http://dive4elements.wald.intevation.org