Skip to content

Commit

Permalink
Fix my own nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Jul 18, 2013
1 parent 5772d22 commit a606493
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -422,7 +422,7 @@ public String toString() {
checkExpired();
// Possibly use reflection to check whether dList or dElement is calling this?
// If dList, return fl@..., if dElement, return f@...
return (flagOwner == "SERVER" ? "fl@" + flagName : "fl[" + flagOwner + "]@" + flagName);
return (flagOwner.equalsIgnoreCase("SERVER") ? "fl@" + flagName : "fl[" + flagOwner + "]@" + flagName);
}

/**
Expand Down

0 comments on commit a606493

Please sign in to comment.