mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-04 15:14:49 +00:00
Merge pull request #30 from hola/fix-regexp-forward-slash
fixed forward slash translation in RegExp
This commit is contained in:
@@ -60,8 +60,6 @@ public class RegExpAvm2Item extends AVM2Item implements Callable {
|
||||
ret.append("\\b");
|
||||
} else if (c == '\f') {
|
||||
ret.append("\\f");
|
||||
} else if (c == '/') {
|
||||
ret.append("\\/");
|
||||
} else if (c < 32) {
|
||||
ret.append("\\x").append(Helper.byteToHex((byte) c));
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user