mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-1797 removed unused DataTypeConflictException
This commit is contained in:
parent
0acb497263
commit
01067debde
56 changed files with 172 additions and 365 deletions
|
@ -180,7 +180,7 @@ public class DataSymbolApplier extends MsSymbolApplier {
|
|||
applicator.getProgram().getListing().createData(address, dataType);
|
||||
}
|
||||
}
|
||||
catch (CodeUnitInsertionException | DataTypeConflictException e) {
|
||||
catch (CodeUnitInsertionException e) {
|
||||
applicator.appendLogMsg("Unable to create " + dataType.getDisplayName() + " at 0x" +
|
||||
address + ": " + e.getMessage());
|
||||
}
|
||||
|
@ -191,7 +191,7 @@ public class DataSymbolApplier extends MsSymbolApplier {
|
|||
address.add(dataTypeLength - 1), false);
|
||||
applicator.getProgram().getListing().createData(address, dataType, dataTypeLength);
|
||||
}
|
||||
catch (CodeUnitInsertionException | DataTypeConflictException e) {
|
||||
catch (CodeUnitInsertionException e) {
|
||||
applicator.appendLogMsg("Unable to replace " + dataType.getDisplayName() +
|
||||
" at 0x" + address + ": " + e.getMessage());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue