mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-21 13:32:44 +08:00
Merge branch 'GP-0_fix-tests'
This commit is contained in:
+4
-1
@@ -65,11 +65,14 @@ public class StringIngest implements ByteIngest {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
if (outStream == null) {
|
||||
return "<empty>";
|
||||
}
|
||||
return outStream.toString();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isEmpty() {
|
||||
return (outStream.size() == 0);
|
||||
return outStream == null || (outStream.size() == 0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user