Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/mobileGWT/mgwtPlus/src/org/litesoft/mgwt/client/AnimatedDisplayAdaptor.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 package org.litesoft.mgwt.client;
2 2
3 3 import org.litesoft.GWT.client.pavsupport.*;
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 import com.google.gwt.place.shared.*;
7 7 import com.google.gwt.user.client.ui.*;
  @@ -18,8 +18,8 @@
18 18
19 19 public AnimatedDisplayAdaptor( AnimatableDisplay pAnimatableDisplay, AnimationMapper pAnimationMapper )
20 20 {
21 - mAnimatableDisplay = UtilsCommon.assertNotNull( "AnimatableDisplay", pAnimatableDisplay );
22 - mAnimationMapper = UtilsCommon.assertNotNull( "AnimationMapper", pAnimationMapper );
21 + mAnimatableDisplay = Objects.assertNotNull( "AnimatableDisplay", pAnimatableDisplay );
22 + mAnimationMapper = Objects.assertNotNull( "AnimationMapper", pAnimationMapper );
23 23 }
24 24
25 25 @Override