Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DA28AFE91 for ; Wed, 17 Apr 2013 15:23:13 +0000 (UTC) Received: (qmail 73119 invoked by uid 500); 17 Apr 2013 15:23:13 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 73092 invoked by uid 500); 17 Apr 2013 15:23:13 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 73085 invoked by uid 99); 17 Apr 2013 15:23:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Apr 2013 15:23:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Apr 2013 15:23:11 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A313823888EA; Wed, 17 Apr 2013 15:22:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1468968 - in /accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security: SecurityHelper.java WalkingSecurity.java Date: Wed, 17 Apr 2013 15:22:50 -0000 To: commits@accumulo.apache.org From: vines@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130417152250.A313823888EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: vines Date: Wed Apr 17 15:22:50 2013 New Revision: 1468968 URL: http://svn.apache.org/r1468968 Log: ACCUMULO-972 - cleaning up TODOs in security randomwalk Modified: accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/SecurityHelper.java accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/WalkingSecurity.java Modified: accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/SecurityHelper.java URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/SecurityHelper.java?rev=1468968&r1=1468967&r2=1468968&view=diff ============================================================================== --- accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/SecurityHelper.java (original) +++ accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/SecurityHelper.java Wed Apr 17 15:22:50 2013 @@ -193,8 +193,7 @@ public class SecurityHelper { try { fs = FileSystem.get(CachedConfiguration.getInstance()); } catch (IOException e) { - // TODO Auto-generated catch block - e.printStackTrace(); + throw new RuntimeException(e); } state.set(filesystem, fs); } Modified: accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/WalkingSecurity.java URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/WalkingSecurity.java?rev=1468968&r1=1468967&r2=1468968&view=diff ============================================================================== --- accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/WalkingSecurity.java (original) +++ accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/randomwalk/security/WalkingSecurity.java Wed Apr 17 15:22:50 2013 @@ -381,8 +381,7 @@ public class WalkingSecurity extends Sec try { fs = FileSystem.get(CachedConfiguration.getInstance()); } catch (IOException e) { - // TODO Auto-generated catch block - e.printStackTrace(); + throw new RuntimeException(e); } state.set(filesystem, fs); }