Skip to content

Commit

Permalink
tokenLabel duplicate entry fix
Browse files Browse the repository at this point in the history
Updating tokenLabel check so keyword is recorded properly.

Signed-off-by: Bob Du [email protected]
  • Loading branch information
Bob Du committed Feb 13, 2023
1 parent e808e98 commit 65bc115
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 65bc115

Please sign in to comment.