@@ -128,7 +128,7 @@ public boolean containsKey(Object key){
128
128
129
129
public IMapEntry entryAt (Object key ){
130
130
if (key == null )
131
- return hasNull ? (IMapEntry ) Tuple .create (null , nullValue ) : null ;
131
+ return hasNull ? (IMapEntry ) MapEntry .create (null , nullValue ) : null ;
132
132
return (root != null ) ? root .find (0 , hash (key ), key ) : null ;
133
133
}
134
134
@@ -264,7 +264,7 @@ public int count(){
264
264
265
265
public ISeq seq (){
266
266
ISeq s = root != null ? root .nodeSeq () : null ;
267
- return hasNull ? new Cons (Tuple .create (null , nullValue ), s ) : s ;
267
+ return hasNull ? new Cons (MapEntry .create (null , nullValue ), s ) : s ;
268
268
}
269
269
270
270
public IPersistentCollection empty (){
@@ -766,7 +766,7 @@ public IMapEntry find(int shift, int hash, Object key){
766
766
if (keyOrNull == null )
767
767
return ((INode ) valOrNode ).find (shift + 5 , hash , key );
768
768
if (Util .equiv (key , keyOrNull ))
769
- return (IMapEntry ) Tuple .create (keyOrNull , valOrNode );
769
+ return (IMapEntry ) MapEntry .create (keyOrNull , valOrNode );
770
770
return null ;
771
771
}
772
772
@@ -967,7 +967,7 @@ public IMapEntry find(int shift, int hash, Object key){
967
967
if (idx < 0 )
968
968
return null ;
969
969
if (Util .equiv (key , array [idx ]))
970
- return (IMapEntry ) Tuple .create (array [idx ], array [idx +1 ]);
970
+ return (IMapEntry ) MapEntry .create (array [idx ], array [idx +1 ]);
971
971
return null ;
972
972
}
973
973
@@ -1343,7 +1343,7 @@ public Obj withMeta(IPersistentMap meta) {
1343
1343
public Object first () {
1344
1344
if (s != null )
1345
1345
return s .first ();
1346
- return Tuple .create (array [i ], array [i +1 ]);
1346
+ return MapEntry .create (array [i ], array [i +1 ]);
1347
1347
}
1348
1348
1349
1349
public ISeq next () {
0 commit comments