small bug fix for restoring program locations

This commit is contained in:
dragonmacher
2025-04-30 17:02:29 -04:00
parent ed1521227b
commit 63503ac3b5
@@ -33,12 +33,12 @@ public class DefaultDecompilerLocation extends ProgramLocation implements Decomp
public DefaultDecompilerLocation(Program program, Address address,
DecompilerLocationInfo info) {
super(program, address);
this.info = info;
}
public DefaultDecompilerLocation() {
// for restoring from xml
info = new DecompilerLocationInfo();
}
@Override