Subversion Repository Public Repository

litesoft

Diff Revisions 808 vs 809 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/client/IMenuableDef.java

Diff revisions: vs.
  @@ -1,6 +1,8 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.client;
3 3
4 + import org.litesoft.core.typeutils.*;
5 +
4 6 public interface IMenuableDef
5 7 {
6 8 public static final IMenuableDef[] EMPTY_ARRAY = new IMenuableDef[0];
  @@ -9,7 +11,7 @@
9 11 {
10 12 public static IMenuableDef[] deNull( IMenuableDef[] pCommands )
11 13 {
12 - int zCount = UtilsGwt.getNonNullEntryCount( pCommands );
14 + int zCount = Objects.getNonNullEntryCount( pCommands );
13 15 if ( (zCount == 0) )
14 16 {
15 17 return EMPTY_ARRAY;