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 2016/08/25 00:28:02 UTC

cassandra git commit: remove dead test support class

Repository: cassandra
Updated Branches:
  refs/heads/trunk c26bd9185 -> fdfc2d8d3


remove dead test support class


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

Branch: refs/heads/trunk
Commit: fdfc2d8d371c7411cdeffdc0bd43d1a2a725ff6b
Parents: c26bd91
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Wed Aug 24 20:27:28 2016 -0400
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Wed Aug 24 20:27:28 2016 -0400

----------------------------------------------------------------------
 .../org/apache/cassandra/triggers/TriggerExecutorTest.java   | 8 --------
 1 file changed, 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/fdfc2d8d/test/unit/org/apache/cassandra/triggers/TriggerExecutorTest.java
----------------------------------------------------------------------
diff --git a/test/unit/org/apache/cassandra/triggers/TriggerExecutorTest.java b/test/unit/org/apache/cassandra/triggers/TriggerExecutorTest.java
index 8c0e5f2..90b4cdf 100644
--- a/test/unit/org/apache/cassandra/triggers/TriggerExecutorTest.java
+++ b/test/unit/org/apache/cassandra/triggers/TriggerExecutorTest.java
@@ -358,12 +358,4 @@ public class TriggerExecutorTest
             return cmp != 0 ? cmp : m1.key().compareTo(m2.key());
         }
     }
-
-    private static class CfComparator implements Comparator<Partition>
-    {
-        public int compare(Partition cf1, Partition cf2)
-        {
-            return cf1.metadata().cfName.compareTo(cf2.metadata().cfName);
-        }
-    }
 }