From 088627b0d99e94a83bd3596b9c6b4132d0311e0d Mon Sep 17 00:00:00 2001 From: fh Date: Thu, 4 Oct 2001 11:51:10 +0000 Subject: [PATCH] made the following protected: invalidatePopupCache () throwSQLException (SQLException sqe, String wo) theAdaptor complaints are accepted :) --- source/mir/storage/Database.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/mir/storage/Database.java b/source/mir/storage/Database.java index dbfe1372..973850ae 100755 --- a/source/mir/storage/Database.java +++ b/source/mir/storage/Database.java @@ -45,7 +45,7 @@ public class Database implements StorageObject { private String database_driver; private String database_url; private int defaultLimit; - private DatabaseAdaptor theAdaptor; + protected DatabaseAdaptor theAdaptor; protected Logfile theLog; protected Connection con; @@ -857,7 +857,7 @@ public class Database implements StorageObject { /* invalidates the popupCache */ - private void invalidatePopupCache () { + protected void invalidatePopupCache () { /** @todo invalidates toooo much */ popupCache = null; @@ -1057,7 +1057,7 @@ public class Database implements StorageObject { * @param wo Funktonsname, in der die SQLException geworfen wurde * @exception StorageObjectException */ - void throwSQLException (SQLException sqe, String wo) throws StorageObjectException { + protected void throwSQLException (SQLException sqe, String wo) throws StorageObjectException { String state = ""; String message = ""; int vendor = 0; -- 2.11.0