Skip to content

Commit

Permalink
fixed badmerge
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Apr 29, 2024
1 parent 7e0eeae commit 90efee4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
import org.eclipse.jdt.core.dom.WildcardType;

import io.usethesource.vallang.ISourceLocation;
import io.usethesource.vallang.IString;
import io.usethesource.vallang.IValue;
import io.usethesource.vallang.type.TypeFactory;

Expand Down Expand Up @@ -936,7 +937,7 @@ public boolean visit(MethodDeclaration node) {
IListWriter parameters = values.listWriter();
for (Iterator<?> it = node.parameters().iterator(); it.hasNext();) {
SingleVariableDeclaration v = (SingleVariableDeclaration) it.next();
parameters.add(visitChild(v));
parameters.insert(visitChild(v));
}

IListWriter possibleExceptions = values.listWriter();
Expand Down

0 comments on commit 90efee4

Please sign in to comment.