Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Server/src/org/litesoft/servlets/GetAction.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.servlets;
3 3
4 - import org.litesoft.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 public class GetAction
7 7 {
  @@ -9,8 +9,8 @@
9 9
10 10 public GetAction( String pLabel, String pURL )
11 11 {
12 - mLabel = Utils.assertNotNullNotEmpty( "Label", pLabel );
13 - mURL = Utils.assertNotNullNotEmpty( "URL", pURL );
12 + mLabel = Strings.assertNotNullNotEmpty( "Label", pLabel );
13 + mURL = Strings.assertNotNullNotEmpty( "URL", pURL );
14 14 }
15 15
16 16 public String getLabel()