Skip to content

Commit

Permalink
Spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
fickludd committed Jan 4, 2017
1 parent b10ef61 commit bcdcf5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

public class ShiroAuthToken implements AuthenticationToken
{
private static final String VALUE_QOUTE = "'";
private static final String VALUE_DELIMITER = "'";
private static final String PAIR_DELIMITER = ", ";
private static final String KEY_VALUE_DELIMITER = "=";

Expand Down Expand Up @@ -106,6 +106,6 @@ public String toString()
private String keyValueString( String key )
{
String valueString = ( key.equals( AuthToken.CREDENTIALS ) ? "******" : authToken.get( key ).toString() );
return key + KEY_VALUE_DELIMITER + VALUE_QOUTE + valueString + VALUE_QOUTE;
return key + KEY_VALUE_DELIMITER + VALUE_DELIMITER + valueString + VALUE_DELIMITER;
}
}

0 comments on commit bcdcf5c

Please sign in to comment.