We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461ac90 commit 2ce191dCopy full SHA for 2ce191d
Ghidra/Features/Base/src/main/java/ghidra/app/plugin/debug/DbViewerProvider.java
@@ -41,7 +41,7 @@ public DbViewerProvider(Plugin plugin) {
41
setHelpLocation(new HelpLocation(plugin.getName(), "DbViewer"));
42
}
43
44
- public void closeDatabase() {
+ protected void closeDatabase() {
45
if (comp != null) {
46
comp.closeDatabase();
47
@@ -53,7 +53,7 @@ public void closeDatabase() {
53
* @param databaseName the name of the database.
54
* @param handle the DBHandle for the open database
55
*/
56
- public void openDatabase(String databaseName, DBHandle handle) {
+ protected void openDatabase(String databaseName, DBHandle handle) {
57
58
comp.openDatabase(databaseName, handle);
59
0 commit comments