You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by db...@apache.org on 2014/02/19 03:46:28 UTC

[1/3] git commit: no need for toLowerCase() and equalsIgnoreCase() at the same time

Repository: cassandra
Updated Branches:
  refs/heads/trunk 8760f75c9 -> d5e9644f2


no need for toLowerCase() and equalsIgnoreCase() at the same time


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/e67a0a98
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/e67a0a98
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/e67a0a98

Branch: refs/heads/trunk
Commit: e67a0a9819c7cd4facfb4448eea78a29b44d4cf5
Parents: ad3a4f8
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Tue Feb 18 21:43:40 2014 -0500
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Tue Feb 18 21:43:40 2014 -0500

----------------------------------------------------------------------
 src/java/org/apache/cassandra/config/Config.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/e67a0a98/src/java/org/apache/cassandra/config/Config.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/config/Config.java b/src/java/org/apache/cassandra/config/Config.java
index ceb8df0..876770c 100644
--- a/src/java/org/apache/cassandra/config/Config.java
+++ b/src/java/org/apache/cassandra/config/Config.java
@@ -224,11 +224,11 @@ public class Config
     {
         if (hinted_handoff_enabled != null && !hinted_handoff_enabled.isEmpty())
         {
-            if (hinted_handoff_enabled.toLowerCase().equalsIgnoreCase("true"))
+            if (hinted_handoff_enabled.equalsIgnoreCase("true"))
             {
                 hinted_handoff_enabled_global = true;
             }
-            else if (hinted_handoff_enabled.toLowerCase().equalsIgnoreCase("false"))
+            else if (hinted_handoff_enabled.equalsIgnoreCase("false"))
             {
                 hinted_handoff_enabled_global = false;
             }


[3/3] git commit: Merge branch 'cassandra-2.1' into trunk

Posted by db...@apache.org.
Merge branch 'cassandra-2.1' into trunk


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/d5e9644f
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/d5e9644f
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/d5e9644f

Branch: refs/heads/trunk
Commit: d5e9644f2b7c7c7b90d4813d30de191188779c53
Parents: 8760f75 5afd2bd
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Tue Feb 18 21:45:47 2014 -0500
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Tue Feb 18 21:45:47 2014 -0500

----------------------------------------------------------------------
 src/java/org/apache/cassandra/config/Config.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------



[2/3] git commit: Merge branch 'cassandra-2.0' into cassandra-2.1

Posted by db...@apache.org.
Merge branch 'cassandra-2.0' into cassandra-2.1


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/5afd2bd4
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/5afd2bd4
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/5afd2bd4

Branch: refs/heads/trunk
Commit: 5afd2bd4834b3d1c55fa484d73fc1056ad3959e4
Parents: c2681e9 e67a0a9
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Tue Feb 18 21:44:41 2014 -0500
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Tue Feb 18 21:44:41 2014 -0500

----------------------------------------------------------------------
 src/java/org/apache/cassandra/config/Config.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/5afd2bd4/src/java/org/apache/cassandra/config/Config.java
----------------------------------------------------------------------