|
From: Brett L. <wak...@us...> - 2011-07-21 17:01:49
|
rails/common/parser/Tag.java | 3 ---
1 file changed, 3 deletions(-)
New commits:
commit 6b7255acdcdfd3217884ae2701975166df7350b8
Author: Brett Lentz <bl...@cl...>
Date: Thu Jul 21 09:58:42 2011 -0700
Tag: simplify conditional logic.
This is really a spurious commit to test Egit.
diff --git a/rails/common/parser/Tag.java b/rails/common/parser/Tag.java
index 22c3c0a..7a7d46e 100644
--- a/rails/common/parser/Tag.java
+++ b/rails/common/parser/Tag.java
@@ -326,9 +326,6 @@ public class Tag {
break;
}
}
- }
-
- if (optionValue == null) {
// Take the default value
GameOption go = GameOption.getByName(name);
optionValue = go != null ? go.getDefaultValue() : "";
|