Skip to content

Commit

Permalink
Remove unused NativeIndexKey#propertiesAsString()
Browse files Browse the repository at this point in the history
  • Loading branch information
tinwelint committed Oct 2, 2018
1 parent 9ff260f commit 44b21a0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
Expand Up @@ -19,7 +19,6 @@
*/
package org.neo4j.kernel.impl.index.schema;

import java.util.Arrays;
import java.util.StringJoiner;

import org.neo4j.gis.spatial.index.curves.SpaceFillingCurve;
Expand Down Expand Up @@ -69,12 +68,6 @@ void initialize( long entityId )
}
}

@Override
String propertiesAsString()
{
return Arrays.toString( asValues() );
}

@Override
Value[] asValues()
{
Expand Down
Expand Up @@ -91,8 +91,6 @@ void initialize( long entityId )

abstract Value[] asValues();

abstract String propertiesAsString();

abstract void initValueAsLowest( int stateSlot, ValueGroup valueGroup );

abstract void initValueAsHighest( int stateSlot, ValueGroup valueGroup );
Expand Down
Expand Up @@ -66,12 +66,6 @@ final void initValueAsHighest( int stateSlot, ValueGroup valueGroup )

abstract Value assertCorrectType( Value value );

@Override
protected String propertiesAsString()
{
return asValue().toString();
}

abstract Value asValue();

@Override
Expand Down

0 comments on commit 44b21a0

Please sign in to comment.