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 21f680b commit c01e88c
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -317,7 +317,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 c01e88c

Please sign in to comment.