mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 06:50:46 +00:00
Code formatting
This commit is contained in:
@@ -14,21 +14,21 @@
|
||||
* 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.treemodel;
|
||||
|
||||
import com.jpexs.asdec.action.Action;
|
||||
|
||||
public class SetTarget2TreeItem extends TreeItem {
|
||||
public TreeItem target;
|
||||
|
||||
public SetTarget2TreeItem(Action instruction, TreeItem target) {
|
||||
super(instruction, PRECEDENCE_PRIMARY);
|
||||
this.target = target;
|
||||
}
|
||||
public TreeItem target;
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants) {
|
||||
return "tellTarget(" + target.toString(constants) + ");";
|
||||
}
|
||||
public SetTarget2TreeItem(Action instruction, TreeItem target) {
|
||||
super(instruction, PRECEDENCE_PRIMARY);
|
||||
this.target = target;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants) {
|
||||
return "tellTarget(" + target.toString(constants) + ");";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user