Skip to content

Commit

Permalink
Fix compilation after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
burqen committed Jun 13, 2018
1 parent d063062 commit 5539553
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -67,7 +67,7 @@ public long countIndexedNodes( long nodeId, Value... propertyValues )
public IndexSampler createSampler()
{
List<IndexSampler> samplers = new ArrayList<>();
for ( SpatialIndexPartReader<NativeSchemaValue> partReader : this )
for ( SpatialIndexPartReader<NativeIndexValue> partReader : this )
{
samplers.add( partReader.createSampler() );
}
Expand Down
Expand Up @@ -192,7 +192,7 @@ void copyFrom( StringIndexKey key )
copyFrom( key, key.bytesLength );
}

void copyFrom( StringSchemaKey key, int targetLength )
void copyFrom( StringIndexKey key, int targetLength )
{
setBytesLength( targetLength );
System.arraycopy( key.bytes, 0, bytes, 0, targetLength );
Expand Down
Expand Up @@ -83,7 +83,7 @@ public boolean fixedSize()
}

@Override
public void minimalSplitter( StringSchemaKey left, StringSchemaKey right, StringSchemaKey into )
public void minimalSplitter( StringIndexKey left, StringIndexKey right, StringIndexKey into )
{
int maxLength = Math.min( left.bytesLength, right.bytesLength );
int targetLength = 0;
Expand Down

0 comments on commit 5539553

Please sign in to comment.