Subversion Repository Public Repository

litesoft

Diff Revisions 808 vs 809 for /trunk/Java/core/Server/src/org/litesoft/util/Utils.java

Diff revisions: vs.
  @@ -9,6 +9,7 @@
9 9 import java.util.*;
10 10 import java.util.Date;
11 11
12 + import org.litesoft.core.typeutils.*;
12 13 import org.litesoft.core.util.*;
13 14
14 15 @SuppressWarnings({"UnusedDeclaration"})
  @@ -306,7 +307,7 @@
306 307 public static <T, U> Map<T, U> addKeyValuesTo( Map<T, U> pMap, Object... pProperty_NameValues )
307 308 throws IllegalArgumentException
308 309 {
309 - if ( isNotNullOrEmpty( pProperty_NameValues ) )
310 + if ( Objects.isNotNullOrEmpty( pProperty_NameValues ) )
310 311 {
311 312 if ( (pProperty_NameValues.length & 1) != 0 )
312 313 {