mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 16:30:45 +00:00
#844 lowercase/uppercase convertion in DefineTexts
This commit is contained in:
@@ -56,12 +56,11 @@ public class FolderItem implements TreeItem {
|
||||
|
||||
@Override
|
||||
public boolean isModified() {
|
||||
for(TreeItem ti:subItems){
|
||||
if(ti.isModified()){
|
||||
for (TreeItem ti : subItems) {
|
||||
if (ti.isModified()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -47,6 +47,4 @@ public class HeaderItem implements TreeItem {
|
||||
public boolean isModified() {
|
||||
return false; //??
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -175,13 +175,11 @@ public class SWFList implements List<SWF>, SWFContainerItem {
|
||||
|
||||
@Override
|
||||
public boolean isModified() {
|
||||
for(SWF s:swfs){
|
||||
if(s.isModified()){
|
||||
for (SWF s : swfs) {
|
||||
if (s.isModified()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -25,6 +25,6 @@ import com.jpexs.decompiler.flash.SWF;
|
||||
public interface TreeItem {
|
||||
|
||||
public SWF getSwf();
|
||||
|
||||
|
||||
public boolean isModified();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user