Subversion Repository Public Repository

litesoft

Diff Revisions 943 vs 950 for /trunk/DeviceDesktopTest/src/org/litesoft/language/model/MasterUnvalidatedEntry.java

Diff revisions: vs.
  @@ -1,14 +1,14 @@
1 1 package org.litesoft.language.model;
2 2
3 3 import org.litesoft.commonfoundation.annotations.*;
4 - import org.litesoft.commonfoundation.typeutils.*;
4 + import org.litesoft.commonfoundation.base.*;
5 5
6 6 public class MasterUnvalidatedEntry extends Key
7 7 {
8 8 public MasterUnvalidatedEntry( @SignificantText String pKey, @NotEmpty String pValue )
9 9 {
10 10 super( pKey );
11 - mValue = Strings.assertNotEmptyIfNotNull( "Value", pValue );
11 + mValue = Confirm.nullOrNotEmpty( "Value", pValue );
12 12 }
13 13
14 14 public @SignificantText String getValue()