mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-2236 Changed DataTypeDB clone implementations to return self if the specified datatype manager is unchanged. Makes consistent with javadoc and could improve resolve performance in some cases.
This commit is contained in:
parent
f57cf98f56
commit
5eed321004
35 changed files with 498 additions and 936 deletions
|
@ -1384,7 +1384,10 @@ public abstract class AbstractGenericTest extends AbstractGTest {
|
|||
public static TableCellEditor editCell(final JTable table, final int row, final int col) {
|
||||
|
||||
waitForSwing();
|
||||
|
||||
runSwing(() -> table.setRowSelectionInterval(row, row));
|
||||
waitForSwing();
|
||||
|
||||
runSwing(() -> table.editCellAt(row, col));
|
||||
waitForSwing();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue