Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B9EFB200C78 for ; Thu, 18 May 2017 17:58:29 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B87C3160BC4; Thu, 18 May 2017 15:58:29 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 303B9160BA7 for ; Thu, 18 May 2017 17:58:29 +0200 (CEST) Received: (qmail 9688 invoked by uid 500); 18 May 2017 15:58:26 -0000 Mailing-List: contact dev-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list dev@zookeeper.apache.org Received: (qmail 9303 invoked by uid 99); 18 May 2017 15:58:26 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2017 15:58:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1CE6AE112D; Thu, 18 May 2017 15:58:26 +0000 (UTC) From: rakeshadr To: dev@zookeeper.apache.org Reply-To: dev@zookeeper.apache.org References: In-Reply-To: Subject: [GitHub] zookeeper pull request #236: ZOOKEEPER-2733: Cleanup findbug warnings in bra... Content-Type: text/plain Message-Id: <20170518155826.1CE6AE112D@git1-us-west.apache.org> Date: Thu, 18 May 2017 15:58:26 +0000 (UTC) archived-at: Thu, 18 May 2017 15:58:29 -0000 Github user rakeshadr commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/236#discussion_r117285488 --- Diff: src/java/main/org/apache/zookeeper/server/upgrade/UpgradeMain.java --- @@ -113,16 +113,18 @@ private void createAllDirs() throws IOException { * @throws IOException */ void copyFiles(File srcDir, File dstDir, String filter) throws IOException { - File[] list = srcDir.listFiles(); - for (File file: list) { - String name = file.getName(); - if (name.startsWith(filter)) { - // we need to copy this file - File dest = new File(dstDir, name); - LOG.info("Renaming " + file + " to " + dest); - if (!file.renameTo(dest)) { - throw new IOException("Unable to rename " - + file + " to " + dest); + File[] list; + if ((list = srcDir.listFiles()) != null) { --- End diff -- Please keep var assignment `(list = srcDir.listFiles())` along with the object reference. `File[] list = srcDir.listFiles();` --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---