Skip to content

Commit 8382c70

Browse files
committed
Fix raw type warning
1 parent 63bcd37 commit 8382c70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/truffleruby/parser/ast/HashPatternParseNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public HashParseNode getKeywordArgs() {
9999
return keywordArgs;
100100
}
101101

102-
public List getKeys() {
102+
public List<ParseNode> getKeys() {
103103
List<ParseNodeTuple> pairs = keywordArgs.getPairs();
104104
List<ParseNode> keys = new ArrayList<>(pairs.size());
105105

0 commit comments

Comments
 (0)