Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/SizeXY.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 /**
8 8 * @noinspection EqualsAndHashcode
  @@ -55,7 +55,7 @@
55 55 {
56 56 if ( pValue < 0 )
57 57 {
58 - throw new IllegalArgumentException( WHAT + " " + pWhat + UtilsCommon.CANNOT_BE_NEGATIVE );
58 + throw new IllegalArgumentException( WHAT + " " + pWhat + Numerics.CANNOT_BE_NEGATIVE );
59 59 }
60 60 return pValue;
61 61 }