Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/ViewManagerImpl.java

Diff revisions: vs.
  @@ -6,7 +6,6 @@
6 6 import org.litesoft.bo.views.*;
7 7 import org.litesoft.core.*;
8 8 import org.litesoft.core.typeutils.*;
9 - import org.litesoft.core.util.*;
10 9 import org.litesoft.security.*;
11 10 import org.litesoft.uispecification.*;
12 11
  @@ -37,7 +36,7 @@
37 36 @Override
38 37 public void showDialog( ViewDef pViewDef, Object pParams )
39 38 {
40 - UtilsCommon.assertNotNull( "(Dialog) ViewDef", pViewDef );
39 + Objects.assertNotNull( "(Dialog) ViewDef", pViewDef );
41 40 ViewFactory zFactory = getViewFactory( pViewDef );
42 41 if ( zFactory instanceof DialogViewFactory )
43 42 {
  @@ -53,7 +52,7 @@
53 52 public void showScreen( ViewDef pViewDef, UriFragmentIdParams pParams, TransientScreenProperties pNextScreenProperties )
54 53 {
55 54 UtilsGwt.busyCursor();
56 - UtilsCommon.assertNotNull( "(Screen) ViewDef", pViewDef );
55 + Objects.assertNotNull( "(Screen) ViewDef", pViewDef );
57 56 mNextScreenProperties.putAll( pNextScreenProperties );
58 57 ParameterizedUriFragmentId zFragmentId = new ParameterizedUriFragmentId( pViewDef.getFragmentID(), //
59 58 UriFragmentIdParams.toParamsString( pParams ) );