mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 11:44:36 +00:00
Issue #842 For reconstruction if debug line info present
Spaces added between parts of for
This commit is contained in:
@@ -83,6 +83,20 @@ public abstract class GraphTargetItem implements Serializable {
|
||||
|
||||
protected HighlightData srcData = new HighlightData();
|
||||
|
||||
public int getLine() {
|
||||
if (src != null) {
|
||||
return src.getLine();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
public String getFile() {
|
||||
if (src != null) {
|
||||
return src.getFile();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public GraphPart getFirstPart() {
|
||||
if (value == null) {
|
||||
return firstPart;
|
||||
|
||||
Reference in New Issue
Block a user