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 2698A200B7E for ; Tue, 6 Sep 2016 21:43:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 25799160ACB; Tue, 6 Sep 2016 19:43:06 +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 6DA0B160AA9 for ; Tue, 6 Sep 2016 21:43:05 +0200 (CEST) Received: (qmail 12039 invoked by uid 500); 6 Sep 2016 19:43:04 -0000 Mailing-List: contact notifications-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list notifications@groovy.apache.org Received: (qmail 12030 invoked by uid 99); 6 Sep 2016 19:43:04 -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, 06 Sep 2016 19:43:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6EFAAE024E; Tue, 6 Sep 2016 19:43:04 +0000 (UTC) From: tychobrailleur To: notifications@groovy.apache.org Reply-To: notifications@groovy.apache.org Message-ID: Subject: [GitHub] groovy pull request #415: Remove outdated parser loading logic. Content-Type: text/plain Date: Tue, 6 Sep 2016 19:43:04 +0000 (UTC) archived-at: Tue, 06 Sep 2016 19:43:06 -0000 GitHub user tychobrailleur opened a pull request: https://github.com/apache/groovy/pull/415 Remove outdated parser loading logic. It looks like a long time ago there were two Groovy parsers, a “Classic” and Antlr. The Antlr one was loaded using reflection, while the classic one was simply instantiated. The reflection logic was kept after definitely switching to Antlr (cf. ebeff74), although it is still normally instantiated if reflection fails. This commit simply removes all the reflection stuff. You can merge this pull request into a Git repository by running: $ git pull https://github.com/tychobrailleur/groovy patch-1 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/groovy/pull/415.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #415 ---- commit 85e6d25a4ae3e3124633688bc6273ea86514e31b Author: Sébastien Le Callonnec Date: 2016-09-06T19:14:56Z Remove outdated parser loading logic. It looks like a long time ago there were two Groovy parsers, a “Classic” and Antlr. The Antlr one was loaded using reflection, while the classic one was simply instantiated. The reflection logic was kept after definitely switching to Antlr (cf. ebeff74), although it is still normally instantiated if reflection fails. This commit simply removes all the reflection stuff. ---- --- 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. ---