Skip to content

Commit

Permalink
Scripting: Remove dead code from painless module (#32064)
Browse files Browse the repository at this point in the history
  • Loading branch information
original-brownbear authored Jul 16, 2018
1 parent 59191b4 commit b1479bb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 70 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,14 +227,6 @@ public static Type getType(Class<?> clazz) {
return Type.getType(clazz);
}

public void writeBranch(final Label tru, final Label fals) {
if (tru != null) {
visitJumpInsn(Opcodes.IFNE, tru);
} else if (fals != null) {
visitJumpInsn(Opcodes.IFEQ, fals);
}
}

/** Starts a new string concat.
* @return the size of arguments pushed to stack (the object that does string concats, e.g. a StringBuilder)
*/
Expand Down

This file was deleted.

0 comments on commit b1479bb

Please sign in to comment.