Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Server/src/org/litesoft/testplan/TestPlanParser.java

Diff revisions: vs.
  @@ -112,7 +112,7 @@
112 112 String zTagName = mParser.getTagName();
113 113 if ( "Section".equals( zTagName ) )
114 114 {
115 - mSection = Utils.assertNotNullNotEmpty( "Section", mParser.getAttributeValue( "of" ) );
115 + mSection = Strings.assertNotNullNotEmpty( "Section", mParser.getAttributeValue( "of" ) );
116 116 while ( PullParserProxy.START_TAG == mParser.getNextTag( "Section" ) )
117 117 {
118 118 mParser.validateIsStartTag( "Step" );
  @@ -123,7 +123,7 @@
123 123 }
124 124 if ( "Capture".equals( zTagName ) )
125 125 {
126 - String zSet = Utils.assertNotNullNotEmpty( "Capture set", mParser.getAttributeValue( "set" ) );
126 + String zSet = Strings.assertNotNullNotEmpty( "Capture set", mParser.getAttributeValue( "set" ) );
127 127 mParser.validateNextIsEndTag( "Capture" );
128 128 processCapture( mTestPlanFilePath, zSet );
129 129 continue;