Merge branch 'GT-3362_ryanmkurtz_PR-1287_astrelsky_DocumentationFixes'

Conflicts:
	Ghidra/Framework/Docking/src/main/java/docking/action/DockingAction.java
This commit is contained in:
Ryan Kurtz 2019-12-02 13:22:08 -05:00
commit 6e6bdffe86
659 changed files with 1740 additions and 4136 deletions

View file

@ -670,7 +670,6 @@ public class DBHandle {
* @param newDatabaseId database ID to be forced for new database or null to generate
* new database ID
* @param monitor progress monitor
* @param associateWithNewFile if true this handle will be associated with the new file
* @throws IOException if IO error occurs
* @throws CancelledException if monitor cancels operation
*/
@ -915,10 +914,11 @@ public class DBHandle {
}
/**
*
* @param table
* @param id
* @throws DuplicateNameException
* Changes the name of an existing table.
* @param oldName the old name of the table
* @param newName the new name of the table
* @throws DuplicateNameException if a table with the new name already exists
* @return true if the name was changed successfully
*/
public synchronized boolean setTableName(String oldName, String newName)
throws DuplicateNameException {