Skip to content

Commit

Permalink
PR comment: CompositeGenericKey implement propertiesAsString
Browse files Browse the repository at this point in the history
  • Loading branch information
burqen committed Jul 27, 2018
1 parent ac70404 commit c67153d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
*/
package org.neo4j.kernel.impl.index.schema;

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

import org.neo4j.io.pagecache.PageCursor;
Expand Down Expand Up @@ -63,7 +64,7 @@ void initialize( long entityId )
@Override
String propertiesAsString()
{
return "todo";
return Arrays.toString( asValues() );
}

@Override
Expand Down

0 comments on commit c67153d

Please sign in to comment.