Skip to content

Commit 2a8b6d3

Browse files
committed
quick fix for relay: toString of Cursor returns only the value to
1 parent b74b542 commit 2a8b6d3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/main/java/graphql/relay/ConnectionCursor.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ public int hashCode() {
3434

3535
@Override
3636
public String toString() {
37-
return "ConnectionCursor{" +
38-
"value='" + value + '\'' +
39-
'}';
37+
return value;
4038
}
4139
}

0 commit comments

Comments
 (0)