Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 801 for /trunk/Java/core/Server/src/org/litesoft/testplan/TestPlanParse_FunctionalTester.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.testplan;
3 3
4 - import org.litesoft.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 public class TestPlanParse_FunctionalTester
7 7 {
  @@ -9,14 +9,14 @@
9 9 throws Exception
10 10 {
11 11 String zFilePath = "Documents/ExampleSimpleTestPlan.xml";
12 - String zAltPath = Utils.noEmpty( System.getProperty( "TestPlan" ) );
12 + String zAltPath = Strings.noEmpty( System.getProperty( "TestPlan" ) );
13 13 if ( zAltPath != null )
14 14 {
15 15 zFilePath = zAltPath;
16 16 }
17 17 if ( args.length == 1 )
18 18 {
19 - if ( null != (zAltPath = Utils.noEmpty( args[0] )) )
19 + if ( null != (zAltPath = Strings.noEmpty( args[0] )) )
20 20 {
21 21 zFilePath = zAltPath;
22 22 }