Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Oct 10, 2024
1 parent 5f820be commit a64fd74
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public interface MutableState {
<T> Optional<T> get(String key);

MutableState set(String key, Object value);

MutableState clone();

/** EmptyMutableState */
Expand All @@ -53,7 +54,7 @@ public MutableState set(String key, Object value) {
}

@Override
public MutableState clone () {
public MutableState clone() {
return INSTANCE;
}
}
Expand Down

0 comments on commit a64fd74

Please sign in to comment.