Skip to content

Commit

Permalink
DATAJPA-1301 - Polishing.
Browse files Browse the repository at this point in the history
Reduce visibility of constant in TupleBackedMap.

Original pull request: #262.
  • Loading branch information
odrotbohm committed Mar 27, 2018
1 parent c8339a2 commit 84ac659
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -325,7 +325,8 @@ public Object convert(Object source) {
*/
private static class TupleBackedMap implements Map<String, Object> {

public static final String UNMODIFIABLE_MESSAGE = "A TupleBackedMap cannot be modified.";
private static final String UNMODIFIABLE_MESSAGE = "A TupleBackedMap cannot be modified.";

private final Tuple tuple;

TupleBackedMap(Tuple tuple) {
Expand Down

0 comments on commit 84ac659

Please sign in to comment.