comparison gnv-artifacts/src/main/java/de/intevation/gnv/raster/Palette.java @ 803:feae2f9d6c6f

Removed trailing whitespace. gnv-artifacts/trunk@885 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 07 Apr 2010 07:52:27 +0000
parents d766fe2d917a
children f953c9a559d8
comparison
equal deleted inserted replaced
802:4abe172be970 803:feae2f9d6c6f
88 } 88 }
89 89
90 /** 90 /**
91 * Compares two entries by the start point of the interval. 91 * Compares two entries by the start point of the interval.
92 * @param other 92 * @param other
93 * @return -1 if this start point is before other. +1 if this 93 * @return -1 if this start point is before other. +1 if this
94 * start point is after, else 0. 94 * start point is after, else 0.
95 */ 95 */
96 public int compareTo(Object other) { 96 public int compareTo(Object other) {
97 Entry e = (Entry)other; 97 Entry e = (Entry)other;
98 if (from < e.from) return -1; 98 if (from < e.from) return -1;
208 208
209 /** 209 /**
210 * Internal table of the entrys. 210 * Internal table of the entrys.
211 */ 211 */
212 protected Entry [] entries; 212 protected Entry [] entries;
213 213
214 /** 214 /**
215 * Root of the entry tree used to map values to entries. 215 * Root of the entry tree used to map values to entries.
216 */ 216 */
217 protected Entry lookup; 217 protected Entry lookup;
218 218

http://dive4elements.wald.intevation.org