Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/Anywhere/src/org/litesoft/sequences/SequenceBlockChain.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import java.util.*;
5 5
6 - import org.litesoft.core.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 public class SequenceBlockChain extends SequenceBlock
9 9 {
  @@ -18,8 +18,8 @@
18 18
19 19 public static SequenceBlock create( SequenceBlock pExisting, SequenceBlock pNew )
20 20 {
21 - pExisting = UtilsCommon.deNull( pExisting, SequenceBlockImpl.INITIAL );
22 - pNew = UtilsCommon.deNull( pNew, SequenceBlockImpl.INITIAL );
21 + pExisting = Objects.deNull( pExisting, SequenceBlockImpl.INITIAL );
22 + pNew = Objects.deNull( pNew, SequenceBlockImpl.INITIAL );
23 23 return !pExisting.hasMore() ? pNew : !pNew.hasMore() ? pExisting : new SequenceBlockChain( pExisting, pNew );
24 24 }
25 25