Skip to content

Commit

Permalink
Fix configuration methods missing "static".
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoleman committed Sep 26, 2012
1 parent 1dfcfa8 commit d3ab92a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
public class RedisSession extends StandardSession {
protected static Boolean manualDirtyTrackingSupportEnabled = false;

public void setManualDirtyTrackingSupportEnabled(Boolean enabled) {
public static void setManualDirtyTrackingSupportEnabled(Boolean enabled) {
manualDirtyTrackingSupportEnabled = enabled;
}

protected static String manualDirtyTrackingAttributeKey = "__changed__";

public void setManualDirtyTrackingAttributeKey(String key) {
public static void setManualDirtyTrackingAttributeKey(String key) {
manualDirtyTrackingAttributeKey = key;
}

Expand Down

0 comments on commit d3ab92a

Please sign in to comment.