diff flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/BedHeightAccess.java @ 3232:cdbc457e23e2

Removed trailing whitespace. flys-artifacts/trunk@4862 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 03 Jul 2012 12:52:58 +0000
parents b888c5eb65b3
children 3c006a53e551
line wrap: on
line diff
--- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/BedHeightAccess.java	Tue Jul 03 12:34:15 2012 +0000
+++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/BedHeightAccess.java	Tue Jul 03 12:52:58 2012 +0000
@@ -11,55 +11,55 @@
 public class BedHeightAccess extends Access {
 
 	private static final Logger logger = Logger.getLogger(BedHeightAccess.class);
-	
-	
+
+
 	private int[] singleIDs;
 	private int[] epochIDs;
-	
+
 	private Double lowerKM;
 	private Double upperKM;
-	
-	
+
+
 	public BedHeightAccess(FLYSArtifact artifact) {
 		super(artifact);
 	}
-	
-	
+
+
 	public Double getLowerKM() {
     	if (lowerKM == null) {
     		lowerKM = getDouble("ld_from");
     	}
-    	
+
     	return lowerKM;
     }
-    
-    
+
+
     public Double getUpperKM() {
     	if (upperKM == null) {
     		upperKM = getDouble("ld_to");
     	}
-    	
+
     	return upperKM;
     }
-	
-    
+
+
     public int[] getBedHeightSingleIDs() {
     	if (singleIDs == null) {
 	        String data = getString("soundings");
-	
+
 	        if (data == null) {
 	            logger.warn("No 'soundings' parameter specified!");
 	            return null;
 	        }
-	
+
 	        String[] parts = data.split(";");
-	
+
 	        TIntArrayList ids = new TIntArrayList();
-	
+
 	        for (String part: parts) {
 	            if (part.indexOf(SoundingsSelect.PREFIX_SINGLE) >= 0) {
 	                String tmp = part.replace(SoundingsSelect.PREFIX_SINGLE, "");
-	
+
 	                try {
 	                    ids.add(Integer.parseInt(tmp));
 	                }
@@ -68,7 +68,7 @@
 	                }
 	            }
 	        }
-	        
+
 	        singleIDs = ids.toNativeArray();
     	}
 
@@ -79,20 +79,20 @@
     public int[] getBedHeightEpochIDs() {
     	if (epochIDs == null) {
 	        String data = getString("soundings");
-	
+
 	        if (data == null) {
 	            logger.warn("No 'soundings' parameter specified!");
 	            return null;
 	        }
-	
+
 	        String[] parts = data.split(";");
-	
+
 	        TIntArrayList ids = new TIntArrayList();
-	
+
 	        for (String part: parts) {
 	            if (part.indexOf(SoundingsSelect.PREFIX_EPOCH) >= 0) {
 	                String tmp = part.replace(SoundingsSelect.PREFIX_EPOCH, "");
-	
+
 	                try {
 	                    ids.add(Integer.parseInt(tmp));
 	                }
@@ -101,10 +101,10 @@
 	                }
 	            }
 	        }
-	
+
 	        epochIDs = ids.toNativeArray();
     	}
-    	
+
     	return epochIDs;
     }
 }

http://dive4elements.wald.intevation.org