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/05/06 01:23:39 UTC

[2/2] git commit: don't declare throwing exceptions that aren't thrown

don't declare throwing exceptions that aren't thrown


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

Branch: refs/heads/trunk
Commit: b638370d3a07a980bcc833a233fe57ed91aa8c06
Parents: 6e7018a
Author: Dave Brosius <db...@apache.org>
Authored: Sun May 5 16:47:00 2013 -0400
Committer: Dave Brosius <db...@apache.org>
Committed: Sun May 5 19:22:44 2013 -0400

----------------------------------------------------------------------
 src/java/org/apache/cassandra/cli/CliClient.java |   22 +++++++---------
 1 files changed, 10 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/b638370d/src/java/org/apache/cassandra/cli/CliClient.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/cli/CliClient.java b/src/java/org/apache/cassandra/cli/CliClient.java
index aa4e780..4dabda1 100644
--- a/src/java/org/apache/cassandra/cli/CliClient.java
+++ b/src/java/org/apache/cassandra/cli/CliClient.java
@@ -202,7 +202,7 @@ public class CliClient
     }
 
     // Execute a CLI Statement
-    public void executeCLIStatement(String statement) throws CharacterCodingException, TException, TimedOutException, NotFoundException, NoSuchFieldException, InvalidRequestException, UnavailableException, InstantiationException, IllegalAccessException, ClassNotFoundException
+    public void executeCLIStatement(String statement) throws CharacterCodingException, TException, TimedOutException, NotFoundException, NoSuchFieldException, InvalidRequestException, UnavailableException, InstantiationException, IllegalAccessException
     {
         Tree tree = CliCompiler.compileQuery(statement);
         try
@@ -531,7 +531,7 @@ public class CliClient
     }
 
     private void doSlice(String keyspace, ByteBuffer key, String columnFamily, byte[] superColumnName, int limit)
-            throws InvalidRequestException, UnavailableException, TimedOutException, TException, IllegalAccessException, NotFoundException, InstantiationException, NoSuchFieldException
+            throws InvalidRequestException, UnavailableException, TimedOutException, TException, NotFoundException
     {
 
         long startTime = System.nanoTime();
@@ -634,7 +634,7 @@ public class CliClient
 
     // Execute GET statement
     private void executeGet(Tree statement)
-            throws TException, NotFoundException, InvalidRequestException, UnavailableException, TimedOutException, IllegalAccessException, InstantiationException, ClassNotFoundException, NoSuchFieldException
+            throws TException, NotFoundException, InvalidRequestException, UnavailableException, TimedOutException
     {
         if (!CliMain.isConnected() || !hasKeySpace())
             return;
@@ -772,7 +772,7 @@ public class CliClient
     }
 
     private void doGetCounter(ByteBuffer key, ColumnPath path)
-            throws TException, NotFoundException, InvalidRequestException, UnavailableException, TimedOutException, IllegalAccessException, InstantiationException, ClassNotFoundException, NoSuchFieldException
+            throws TException, NotFoundException, InvalidRequestException, UnavailableException, TimedOutException
     {
         boolean isSuper = path.super_column != null;
 
@@ -896,7 +896,7 @@ public class CliClient
 
     // Execute SET statement
     private void executeSet(Tree statement)
-        throws TException, InvalidRequestException, UnavailableException, TimedOutException, NoSuchFieldException, InstantiationException, IllegalAccessException
+        throws TException, InvalidRequestException, UnavailableException, TimedOutException
     {
         if (!CliMain.isConnected() || !hasKeySpace())
             return;
@@ -986,7 +986,7 @@ public class CliClient
 
     // Execute INCR statement
     private void executeIncr(Tree statement, long multiplier)
-            throws TException, NotFoundException, InvalidRequestException, UnavailableException, TimedOutException, IllegalAccessException, InstantiationException, ClassNotFoundException, NoSuchFieldException
+            throws TException, NotFoundException, InvalidRequestException, UnavailableException, TimedOutException
     {
         if (!CliMain.isConnected() || !hasKeySpace())
             return;
@@ -2013,7 +2013,7 @@ public class CliClient
     }
 
     // USE <keyspace_name>
-    private void executeUseKeySpace(Tree statement) throws TException
+    private void executeUseKeySpace(Tree statement)
     {
         if (!CliMain.isConnected())
             return;
@@ -2088,7 +2088,7 @@ public class CliClient
         }
     }
 
-    private void executeTraceNextQuery() throws TException, CharacterCodingException
+    private void executeTraceNextQuery() throws TException
     {
         if (!CliMain.isConnected())
             return;
@@ -2158,7 +2158,7 @@ public class CliClient
         }
     }
 
-    private void describeColumnFamily(KsDef ks_def, CfDef cf_def, NodeProbe probe) throws TException
+    private void describeColumnFamily(KsDef ks_def, CfDef cf_def, NodeProbe probe)
     {
         // fetching bean for current column family store
         ColumnFamilyStoreMBean cfMBean = (probe == null) ? null : probe.getCfsProxy(ks_def.getName(), cf_def.getName());
@@ -2957,16 +2957,14 @@ public class CliClient
         sessionState.out.printf("%n%d Row%s Returned.%n", slices.size(), (slices.size() > 1 ? "s" : ""));
     }
 
-    // retuns sub-column name in human-readable format
+    // returns sub-column name in human-readable format
     private String formatSubcolumnName(String keyspace, String columnFamily, ByteBuffer name)
-            throws NotFoundException, TException, IllegalAccessException, InstantiationException, NoSuchFieldException
     {
         return getFormatType(getCfDef(keyspace, columnFamily).subcomparator_type).getString(name);
     }
 
     // retuns column name in human-readable format
     private String formatColumnName(String keyspace, String columnFamily, ByteBuffer name)
-            throws NotFoundException, TException, IllegalAccessException, InstantiationException, NoSuchFieldException
     {
         return getFormatType(getCfDef(keyspace, columnFamily).comparator_type).getString(name);
     }