summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/stats/DataBaseOutProducer.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/stats/DataBaseOutProducer.java')
-rw-r--r--qadevOOo/runner/stats/DataBaseOutProducer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/stats/DataBaseOutProducer.java b/qadevOOo/runner/stats/DataBaseOutProducer.java
index b36dcfc07c98..6ffe9b705c39 100644
--- a/qadevOOo/runner/stats/DataBaseOutProducer.java
+++ b/qadevOOo/runner/stats/DataBaseOutProducer.java
@@ -87,7 +87,7 @@ public abstract class DataBaseOutProducer implements LogWriter {
* @param entry The description entry that is take as root
* @param log The log writer
*/
- protected boolean findTypeInEntryTree(DescEntry entry, LogWriter log) {
+ private boolean findTypeInEntryTree(DescEntry entry, LogWriter log) {
boolean returnVal = true;
if (isWriteableEntryType(entry)) {
returnVal &= insertEntry(entry, log);
@@ -108,7 +108,7 @@ public abstract class DataBaseOutProducer implements LogWriter {
* @param entry The entry to write.
* @param log The log writer.
*/
- protected boolean insertEntry(DescEntry entry, LogWriter log) {
+ private boolean insertEntry(DescEntry entry, LogWriter log) {
// copy the swlInput HashMap, so it can be reset easily for the next run
HashMap<String,Object> copySqlInput = new HashMap<String,Object>();
copySqlInput.putAll(mSqlInput);
@@ -138,7 +138,7 @@ public abstract class DataBaseOutProducer implements LogWriter {
* @param entry The entry that is checked
* @return True, if it is indeed a writeable entry.
*/
- protected boolean isWriteableEntryType(DescEntry entry) {
+ private boolean isWriteableEntryType(DescEntry entry) {
boolean result = false;
for (int i=0; i<mWriteableEntryTypes.length; i++) {
if (entry.EntryType.equals(mWriteableEntryTypes[i])) {