Skip to content

Commit cc932b1

Browse files
committed
GP-5888 Corrected regression error in stack editor
1 parent 3698048 commit cc932b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/stackeditor/StackFrameDataType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1466,7 +1466,7 @@ public byte[] encodeRepresentation(String repr, MemBuffer buf, Settings settings
14661466

14671467
@Override
14681468
public boolean isDeleted() {
1469-
throw new UnsupportedOperationException();
1469+
return function.isDeleted();
14701470
}
14711471

14721472
@Override

0 commit comments

Comments
 (0)