mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 11:30:54 +00:00
small fixes
This commit is contained in:
@@ -169,7 +169,7 @@ public final class MethodBody implements Cloneable {
|
||||
getCode().toASMSource(constants, trait, method_info.get(this.method_info), this, exportMode, writer);
|
||||
} else {
|
||||
if (!Configuration.decompile.get()) {
|
||||
writer.appendNoHilight("//" + AppResources.translate("decompilation.skipped")).newLine();
|
||||
writer.appendNoHilight(Helper.getDecompilationSkippedComment()).newLine();
|
||||
return;
|
||||
}
|
||||
int timeout = Configuration.decompilationTimeoutSingleMethod.get();
|
||||
@@ -209,7 +209,7 @@ public final class MethodBody implements Cloneable {
|
||||
} else {
|
||||
if (!Configuration.decompile.get()) {
|
||||
//writer.startMethod(this.method_info);
|
||||
writer.appendNoHilight("//" + AppResources.translate("decompilation.skipped")).newLine();
|
||||
writer.appendNoHilight(Helper.getDecompilationSkippedComment()).newLine();
|
||||
//writer.endMethod();
|
||||
return writer;
|
||||
}
|
||||
|
||||
+1
-1
@@ -32,7 +32,7 @@ public class UnsupportedActionItem extends ActionItem {
|
||||
|
||||
@Override
|
||||
public GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) {
|
||||
return writer.append("//" + AppResources.translate("decompilation.unsupported") + ":" + value);
|
||||
return writer.append("// " + AppResources.translate("decompilation.unsupported") + ":" + value);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
package com.jpexs.decompiler.flash.tags.base;
|
||||
|
||||
import com.jpexs.decompiler.flash.treeitems.TreeItem;
|
||||
import com.jpexs.decompiler.flash.types.sound.SoundFormat;
|
||||
import java.io.InputStream;
|
||||
import java.util.List;
|
||||
@@ -24,7 +25,7 @@ import java.util.List;
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public interface SoundTag {
|
||||
public interface SoundTag extends TreeItem {
|
||||
|
||||
public String getExportFormat();
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ public class MarkItem extends GraphTargetItem {
|
||||
|
||||
@Override
|
||||
public GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) {
|
||||
return writer.append("//" + AppResources.translate("decompilerMark") + ":" + mark);
|
||||
return writer.append("// " + AppResources.translate("decompilerMark") + ":" + mark);
|
||||
}
|
||||
|
||||
public String getMark() {
|
||||
|
||||
Reference in New Issue
Block a user