mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-03 16:44:18 +00:00
20 lines
343 B
Java
20 lines
343 B
Java
package com.jpexs.decompiler.flash.graph;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class TrueItem extends GraphTargetItem {
|
|
|
|
public TrueItem(GraphSourceItem src) {
|
|
super(src, PRECEDENCE_PRIMARY);
|
|
}
|
|
|
|
@Override
|
|
public String toString(List localData) {
|
|
return "true";
|
|
}
|
|
}
|