Skip to content

Commit

Permalink
Merge pull request #548 from BobMDu/tokenLabel-fix
Browse files Browse the repository at this point in the history
tokenLabel duplicate entry fix
  • Loading branch information
keithc-ca authored Feb 13, 2023
2 parents e808e98 + 65bc115 commit 844e42f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,8 @@ private void parse() throws IOException {
default->
{
if ("tokenLabel".equalsIgnoreCase(st.sval)) {
tokenLabel = parseStringEntry("tokenLabel");
st.sval = "tokenLabel";
tokenLabel = parseStringEntry(st.sval);
} else {
throw new ConfigurationException
("Unknown keyword '" + st.sval + "', line " +
Expand Down

0 comments on commit 844e42f

Please sign in to comment.