Skip to content

Commit 2ce191d

Browse files
committed
Tweaking DbViewerProvider method access.
1 parent 461ac90 commit 2ce191d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Ghidra/Features/Base/src/main/java/ghidra/app/plugin/debug/DbViewerProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public DbViewerProvider(Plugin plugin) {
4141
setHelpLocation(new HelpLocation(plugin.getName(), "DbViewer"));
4242
}
4343

44-
public void closeDatabase() {
44+
protected void closeDatabase() {
4545
if (comp != null) {
4646
comp.closeDatabase();
4747
}
@@ -53,7 +53,7 @@ public void closeDatabase() {
5353
* @param databaseName the name of the database.
5454
* @param handle the DBHandle for the open database
5555
*/
56-
public void openDatabase(String databaseName, DBHandle handle) {
56+
protected void openDatabase(String databaseName, DBHandle handle) {
5757
if (comp != null) {
5858
comp.openDatabase(databaseName, handle);
5959
}

0 commit comments

Comments
 (0)