From 040870eced4dc3e273313b9ec2ce7bb88d9cc6a0 Mon Sep 17 00:00:00 2001 From: bjculkin Date: Mon, 12 Feb 2018 22:57:29 -0500 Subject: Commenting --- .../bjc/utils/ioutils/RuleBasedConfigReader.java | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java') diff --git a/base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java b/base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java index 9e4bbb6..9b46c06 100644 --- a/base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java +++ b/base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java @@ -101,27 +101,27 @@ public class RuleBasedConfigReader { /* * Ignore blank line without an open rule */ - if(isRuleOpen == false) + if(isRuleOpen == false) { /* * Do nothing */ return false; - else { - /* - * Nothing happens on rule end - */ - if(end != null) { - /* - * Process the rule ending - */ - end.accept(state); - } + } + /* + * Nothing happens on rule end + */ + if(end != null) { /* - * Return a closed rule + * Process the rule ending */ - return false; + end.accept(state); } + + /* + * Return a closed rule + */ + return false; } /** -- cgit v1.2.3