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 2013/12/21 03:56:42 UTC

git commit: asserting that an auto-boxed primitive is not null is pointless

Updated Branches:
  refs/heads/trunk 49c5ed271 -> b34ed0db5


asserting that an auto-boxed primitive is not null is pointless


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

Branch: refs/heads/trunk
Commit: b34ed0db535068525e59f5c3ec20e2c29155467b
Parents: 49c5ed2
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Fri Dec 20 21:56:15 2013 -0500
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Fri Dec 20 21:56:15 2013 -0500

----------------------------------------------------------------------
 .../org/apache/cassandra/io/sstable/IndexSummaryManagerTest.java    | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/b34ed0db/test/unit/org/apache/cassandra/io/sstable/IndexSummaryManagerTest.java
----------------------------------------------------------------------
diff --git a/test/unit/org/apache/cassandra/io/sstable/IndexSummaryManagerTest.java b/test/unit/org/apache/cassandra/io/sstable/IndexSummaryManagerTest.java
index 385c06b..1c86216 100644
--- a/test/unit/org/apache/cassandra/io/sstable/IndexSummaryManagerTest.java
+++ b/test/unit/org/apache/cassandra/io/sstable/IndexSummaryManagerTest.java
@@ -273,7 +273,6 @@ public class IndexSummaryManagerTest extends SchemaLoader
         IndexSummaryManager manager = IndexSummaryManager.instance;
 
         // resize interval
-        assertNotNull(manager.getResizeIntervalInMinutes());
         manager.setResizeIntervalInMinutes(-1);
         assertNull(manager.getTimeToNextResize(TimeUnit.MINUTES));