mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 09:20:47 +00:00
AS3: removed unneccessary output to stdout caused by pre/post increment/decrement
This commit is contained in:
@@ -655,7 +655,6 @@ private int ipOfType(int from,boolean up,Class search,Class skipped,int start,in
|
||||
{
|
||||
if(up)
|
||||
{
|
||||
System.out.println("Searching up from "+from);
|
||||
for(int i=from;i>=start;i--){
|
||||
if(search.isInstance(code.get(i).definition)){
|
||||
return i;
|
||||
@@ -668,7 +667,6 @@ private int ipOfType(int from,boolean up,Class search,Class skipped,int start,in
|
||||
}
|
||||
}else
|
||||
{
|
||||
System.out.println("Searching down from "+from);
|
||||
for(int i=from;i<=end;i++){
|
||||
if(search.isInstance(code.get(i).definition)){
|
||||
return i;
|
||||
@@ -681,7 +679,6 @@ private int ipOfType(int from,boolean up,Class search,Class skipped,int start,in
|
||||
}
|
||||
|
||||
}
|
||||
System.out.println("NotfoundAtAll "+search);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user