Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/Line.java

Diff revisions: vs.
  @@ -2,7 +2,7 @@
2 2 package org.litesoft.core.simpletypes;
3 3
4 4 import org.litesoft.core.simpletypes.nonpublic.*;
5 - import org.litesoft.core.util.*;
5 + import org.litesoft.core.typeutils.*;
6 6
7 7 public final class Line extends CompareSupport<Line> implements SimpleType
8 8 {
  @@ -21,7 +21,7 @@
21 21 mOffset = pOffset;
22 22 if ( (mLength = pLength) < 0 )
23 23 {
24 - throw new IllegalArgumentException( "A Line 'length'" + UtilsCommon.CANNOT_BE_NEGATIVE );
24 + throw new IllegalArgumentException( "A Line 'length'" + Numerics.CANNOT_BE_NEGATIVE );
25 25 }
26 26 }
27 27