typo fixed, sorry

This commit is contained in:
Dmitry Jemerov
2012-07-03 12:58:10 +02:00
parent cc100937a7
commit 327aa3075a
@@ -176,7 +176,7 @@ public class PsiLiteralExpressionImpl
}
if (type == JavaTokenType.STRING_LITERAL) {
String innerText = getInnerText();
return innerText == null ? null : internedParseStringCharacters(text);
return innerText == null ? null : internedParseStringCharacters(innerText);
}
if (type == JavaTokenType.TRUE_KEYWORD) {
return Boolean.TRUE;