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:
ghidra1 2022-06-24 13:30:39 -04:00
parent f57cf98f56
commit 5eed321004
35 changed files with 498 additions and 936 deletions

View file

@ -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();