Skip to content

Commit

Permalink
FISH-8545: Use constants where appropriate.
Browse files Browse the repository at this point in the history
  • Loading branch information
Viii3 committed Feb 21, 2025
1 parent 96a95d1 commit 96feea7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ protected void read(InputStream input) throws XMLStreamException {
versionIdentifier = parser.getElementText();
} else if (RuntimeTagNames.PAYARA_WHITELIST_PACKAGE.equals(name)) {
application.addWhitelistPackage(parser.getElementText());
} else if ("session-config".equals(name)) {
} else if (RuntimeTagNames.SESSION_CONFIG.equals(name)) {
readCookieConfig();
} else {
skipSubTree(name);
Expand Down

0 comments on commit 96feea7

Please sign in to comment.