Code formatting

This commit is contained in:
Jindra Pet��k
2012-12-25 11:33:41 +01:00
parent 24a6b82a94
commit 14ae8e435c
643 changed files with 26017 additions and 27040 deletions
@@ -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,18 +25,18 @@ import java.util.Stack;
public class ActionGetVariable extends Action {
public ActionGetVariable() {
super(0x1C, 0);
}
public ActionGetVariable() {
super(0x1C, 0);
}
@Override
public String toString() {
return "GetVariable";
}
@Override
public String toString() {
return "GetVariable";
}
@Override
public void translate(Stack<TreeItem> stack, ConstantPool constants, List<TreeItem> output, java.util.HashMap<Integer,String> regNames) {
TreeItem value=stack.pop();
stack.push(new GetVariableTreeItem(this,value));
}
@Override
public void translate(Stack<TreeItem> stack, ConstantPool constants, List<TreeItem> output, java.util.HashMap<Integer, String> regNames) {
TreeItem value = stack.pop();
stack.push(new GetVariableTreeItem(this, value));
}
}