Skip to content

Commit

Permalink
#87 - change schema validation property from System.getProperty to co…
Browse files Browse the repository at this point in the history
…nfiguration class
  • Loading branch information
karolbryzgiel committed Nov 17, 2023
1 parent 9f85c7b commit 42eba1a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class SchemaConfiguration {
@Getter
private static boolean validateAuthRequestXML = true;

public static void setValidateAuthRequestXML(boolean myVariable) {
SchemaConfiguration.validateAuthRequestXML = myVariable;
public static void setValidateAuthRequestXML(boolean validateAuthRequestXML) {
SchemaConfiguration.validateAuthRequestXML = validateAuthRequestXML;
}
}

0 comments on commit 42eba1a

Please sign in to comment.