Subversion Repository Public Repository

litesoft

Diff Revisions 809 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/core/hierarchicaldata/HDSMap.java

Diff revisions: vs.
  @@ -201,7 +201,7 @@
201 201 throws IllegalArgumentException
202 202 {
203 203 Objects.assertNotNull( "Value", pValue );
204 - UtilsCommon.assertNotNullNotEmpty( "Path", pPath );
204 + Strings.assertNotNullNotEmpty( "Path", pPath );
205 205 String zPathSep = "";
206 206 String zPath = "";
207 207 for ( String zKey : pPath )
  @@ -256,7 +256,7 @@
256 256 public String removeString( String... pPath )
257 257 throws IllegalArgumentException
258 258 {
259 - UtilsCommon.assertNotNullNotEmpty( "Path", pPath );
259 + Strings.assertNotNullNotEmpty( "Path", pPath );
260 260 return LLremoveString( pPath, 0 );
261 261 }
262 262
  @@ -510,7 +510,7 @@
510 510 @Override
511 511 public Object put( String pKey, Object pValue )
512 512 {
513 - String zKey = UtilsCommon.assertNotNullNotEmpty( "Key", checkKey( pKey ) );
513 + String zKey = Strings.assertNotNullNotEmpty( "Key", checkKey( pKey ) );
514 514 return unParent( unwrapEntry( mNameEntries.put( zKey, new Entry( this, zKey, pValue ) ) ) );
515 515 }
516 516
  @@ -660,7 +660,7 @@
660 660
661 661 public HDSMap( HierarchicalDataSource.Node pNode )
662 662 {
663 - String zStrSize = UtilsCommon.assertNotNullNotEmpty( TYPE + " 'size' attribute", pNode.getAttributeValue( "size" ) );
663 + String zStrSize = Strings.assertNotNullNotEmpty( TYPE + " 'size' attribute", pNode.getAttributeValue( "size" ) );
664 664 int zExpectedSize;
665 665 try
666 666 {