Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-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 A966710DEB for ; Fri, 28 Feb 2014 09:48:41 +0000 (UTC) Received: (qmail 34968 invoked by uid 500); 28 Feb 2014 09:48:21 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 34827 invoked by uid 500); 28 Feb 2014 09:48:15 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 34132 invoked by uid 99); 28 Feb 2014 09:47:59 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Feb 2014 09:47:59 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E4BED9304A1; Fri, 28 Feb 2014 09:47:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: josebarragan@apache.org To: commits@flex.apache.org Date: Fri, 28 Feb 2014 09:48:05 -0000 Message-Id: In-Reply-To: <9e6db14e39d744439e67f278e1e84202@git.apache.org> References: <9e6db14e39d744439e67f278e1e84202@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [08/50] git commit: [flex-falcon] [refs/heads/maven] - Fixing "resource leak" warning. Fixing "resource leak" warning. Signed-off-by: Erik de Bruin Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/7dbe7e70 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/7dbe7e70 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/7dbe7e70 Branch: refs/heads/maven Commit: 7dbe7e70b1230fe0681fc11e2a05b14f37420592 Parents: 4bac1cf Author: Erik de Bruin Authored: Fri Nov 22 09:03:55 2013 +0100 Committer: Erik de Bruin Committed: Mon Nov 25 09:21:33 2013 +0100 ---------------------------------------------------------------------- .../src/org/apache/flex/compiler/internal/graph/GoogDepsWriter.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/7dbe7e70/compiler.jx/src/org/apache/flex/compiler/internal/graph/GoogDepsWriter.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/graph/GoogDepsWriter.java b/compiler.jx/src/org/apache/flex/compiler/internal/graph/GoogDepsWriter.java index 5add337..fac47a3 100644 --- a/compiler.jx/src/org/apache/flex/compiler/internal/graph/GoogDepsWriter.java +++ b/compiler.jx/src/org/apache/flex/compiler/internal/graph/GoogDepsWriter.java @@ -264,6 +264,7 @@ public class GoogDepsWriter { deps.add(s); } } + scanner.close(); } catch (FileNotFoundException e) { e.printStackTrace(); }