Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/configuration/AbstractConfigDataAccessor.java

Diff revisions: vs.
  @@ -65,7 +65,7 @@
65 65 public final synchronized void setKeyValue( Level pLevel, String pKey, String pValue )
66 66 throws UnsupportedOperationException
67 67 {
68 - pKey = UtilsCommon.assertNotNullNotEmpty( "Key", pKey );
68 + pKey = Strings.assertNotNullNotEmpty( "Key", pKey );
69 69 Level zLevel = Objects.deNull( pLevel, Level.RUN );
70 70 if ( Level.RUN.equals( zLevel ) )
71 71 {
  @@ -123,7 +123,7 @@
123 123 @Override
124 124 public final synchronized String getString( String pKey )
125 125 {
126 - pKey = UtilsCommon.assertNotNullNotEmpty( "Key", pKey );
126 + pKey = Strings.assertNotNullNotEmpty( "Key", pKey );
127 127 String rv = mRunLevelKeyValues.get( pKey );
128 128 try
129 129 {