Skip to content

Commit

Permalink
fixed files form Closure #57
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent ad3482d commit 2dde02b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ private static String extractClassNameIfGoog(Node node, Node parent,
String qualifiedName = callee.getQualifiedName();
if (functionName.equals(qualifiedName)) {
Node target = callee.getNext();
if (target != null) {
if (target != null && target.getType() == Token.STRING) {
className = target.getString();
}
}
Expand Down

0 comments on commit 2dde02b

Please sign in to comment.