mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-20 23:08:31 +08:00
Tweaking DbViewerProvider method access.
This commit is contained in:
@@ -41,7 +41,7 @@ public class DbViewerProvider extends ComponentProviderAdapter {
|
||||
setHelpLocation(new HelpLocation(plugin.getName(), "DbViewer"));
|
||||
}
|
||||
|
||||
public void closeDatabase() {
|
||||
protected void closeDatabase() {
|
||||
if (comp != null) {
|
||||
comp.closeDatabase();
|
||||
}
|
||||
@@ -53,7 +53,7 @@ public class DbViewerProvider extends ComponentProviderAdapter {
|
||||
* @param databaseName the name of the database.
|
||||
* @param handle the DBHandle for the open database
|
||||
*/
|
||||
public void openDatabase(String databaseName, DBHandle handle) {
|
||||
protected void openDatabase(String databaseName, DBHandle handle) {
|
||||
if (comp != null) {
|
||||
comp.openDatabase(databaseName, handle);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user