mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 21:20:45 +00:00
Code formatting
This commit is contained in:
@@ -14,7 +14,6 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package com.jpexs.asdec.action.swf4;
|
||||
|
||||
import com.jpexs.asdec.action.Action;
|
||||
@@ -26,19 +25,19 @@ import java.util.Stack;
|
||||
|
||||
public class ActionStringEquals extends Action {
|
||||
|
||||
public ActionStringEquals() {
|
||||
super(0x13, 0);
|
||||
}
|
||||
public ActionStringEquals() {
|
||||
super(0x13, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "StringEquals";
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "StringEquals";
|
||||
}
|
||||
|
||||
@Override
|
||||
public void translate(Stack<TreeItem> stack, ConstantPool constants, List<TreeItem> output, java.util.HashMap<Integer,String> regNames) {
|
||||
TreeItem a = stack.pop();
|
||||
TreeItem b = stack.pop();
|
||||
stack.push(new StringEqTreeItem(this, b, a));
|
||||
}
|
||||
@Override
|
||||
public void translate(Stack<TreeItem> stack, ConstantPool constants, List<TreeItem> output, java.util.HashMap<Integer, String> regNames) {
|
||||
TreeItem a = stack.pop();
|
||||
TreeItem b = stack.pop();
|
||||
stack.push(new StringEqTreeItem(this, b, a));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user