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 C9BD817E4F for ; Tue, 2 Jun 2015 12:42:15 +0000 (UTC) Received: (qmail 37821 invoked by uid 500); 2 Jun 2015 12:42:09 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 37737 invoked by uid 500); 2 Jun 2015 12:42:09 -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 36717 invoked by uid 99); 2 Jun 2015 12:42:08 -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; Tue, 02 Jun 2015 12:42:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DEB22DFF7B; Tue, 2 Jun 2015 12:42:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: fthomas@apache.org To: commits@flex.apache.org Date: Tue, 02 Jun 2015 12:42:26 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [19/35] git commit: [flex-falcon] [refs/heads/IDEA-FLEX_JS_COMPILER] - Revert "Raise visibility to allow sub class to call from @override method" Revert "Raise visibility to allow sub class to call from @override method" This reverts commit 33961df15ff123b4af57883069b6124f3acbb02d. Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/11fe07b8 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/11fe07b8 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/11fe07b8 Branch: refs/heads/IDEA-FLEX_JS_COMPILER Commit: 11fe07b8d3c8b0c406b0ffd961cb10031ddcfe6d Parents: 36722ba Author: Erik de Bruin Authored: Sun May 31 19:47:38 2015 +0200 Committer: Frédéric THOMAS Committed: Tue Jun 2 13:40:54 2015 +0100 ---------------------------------------------------------------------- .../flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/11fe07b8/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java index b8e513d..e402ac9 100644 --- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java +++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java @@ -398,7 +398,7 @@ public class JSGoogDocEmitter extends JSDocEmitter implements IJSGoogDocEmitter emitJSDocLine(name.getToken(), ""); } - protected void emitJSDocLine(String name) + private void emitJSDocLine(String name) { emitJSDocLine(name, ""); }