Subversion Repository Public Repository

litesoft

Diff Revisions 802 vs 821 for /trunk/Java/core/jvm1.4/src/org/litesoft/core/util/HintManager.java

Diff revisions: vs.
  @@ -86,7 +86,7 @@
86 86 public String getHintValue( String pName )
87 87 throws IllegalArgumentException
88 88 {
89 - Hint cur = mNamesToHints.get( UtilsCommon.assertNotNullNotEmpty( "Name", pName ) );
89 + Hint cur = mNamesToHints.get( Strings.assertNotNullNotEmpty( "Name", pName ) );
90 90 return (cur != null) ? cur.getValue() : null;
91 91 }
92 92
  @@ -157,7 +157,7 @@
157 157 public synchronized String removeHint( String pName )
158 158 throws IllegalArgumentException
159 159 {
160 - Hint prev = mNamesToHints.remove( UtilsCommon.assertNotNullNotEmpty( "Name", pName ) );
160 + Hint prev = mNamesToHints.remove( Strings.assertNotNullNotEmpty( "Name", pName ) );
161 161 if ( (prev != null) )
162 162 {
163 163 mHintsAsArray = null;