Skip to content

Commit

Permalink
debug view/edit fix for options, they must not be marked as final oth…
Browse files Browse the repository at this point in the history
…erwise wicket reflection will fail to update them
  • Loading branch information
1azyman committed Oct 7, 2022
1 parent a23bfd9 commit ca03905
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,10 +375,10 @@ static class DebugViewOptions implements Serializable {
private static final String ID_VALIDATE_SCHEMA = "validateSchema";
private static final String ID_SWITCH_TO_PLAINTEXT = "switchToPlainText";

private final boolean encrypt = true;
private final boolean saveAsRaw = true;
private final boolean reevaluateSearchFilters = false;
private final boolean validateSchema = false;
private final boolean switchToPlainText = false;
private boolean encrypt = true;
private boolean saveAsRaw = true;
private boolean reevaluateSearchFilters = false;
private boolean validateSchema = false;
private boolean switchToPlainText = false;
}
}

0 comments on commit ca03905

Please sign in to comment.