Skip to content

Commit

Permalink
Scripting: Remove dead code from painless module (#32064) (#32104)
Browse files Browse the repository at this point in the history
  • Loading branch information
original-brownbear authored Jul 17, 2018
1 parent 8301b2f commit f555426
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 f555426

Please sign in to comment.