Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 72939 invoked from network); 21 Mar 2008 19:09:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Mar 2008 19:09:25 -0000 Received: (qmail 59585 invoked by uid 500); 21 Mar 2008 19:09:23 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 59565 invoked by uid 500); 21 Mar 2008 19:09:23 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 59556 invoked by uid 99); 21 Mar 2008 19:09:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Mar 2008 12:09:23 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Mar 2008 19:08:42 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id CFD24234C0AA for ; Fri, 21 Mar 2008 12:07:26 -0700 (PDT) Message-ID: <1532648872.1206126446849.JavaMail.jira@brutus> Date: Fri, 21 Mar 2008 12:07:26 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-5622) [drlvm][kernel][geronimo] Method.getGeneric*() methods throw NPE for parametrized interface methods In-Reply-To: <1200480618.1206008604342.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-5622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vasily Zakharov updated HARMONY-5622: ------------------------------------- Attachment: Harmony-5622.patch Attached the updated patch taking care of Alexey's notes. > [drlvm][kernel][geronimo] Method.getGeneric*() methods throw NPE for parametrized interface methods > --------------------------------------------------------------------------------------------------- > > Key: HARMONY-5622 > URL: https://issues.apache.org/jira/browse/HARMONY-5622 > Project: Harmony > Issue Type: Bug > Components: App-Oriented Bug Reports, DRLVM > Affects Versions: 5.0M5 > Reporter: Vasily Zakharov > Assignee: Vasily Zakharov > Priority: Critical > Attachments: Harmony-5622.patch, Harmony-5622.patch > > > Class Method methods getGenericParameterTypes(), getGenericReturnType() and toGenericString() throw NPE if called for a parametrized method in an interface. > Here's the test demonstrating the problem: > import java.lang.reflect.Method; > public class Test { > public static void main(String[] args) { > boolean success = true; > try { > Method method = Sample.class.getMethods()[0]; > for (int i = 0; i < 5; i++) { > try { > switch (i) { > case 0: method.getGenericParameterTypes(); > break; > case 1: method.getGenericReturnType(); > break; > case 2: method.getGenericExceptionTypes(); > break; > case 3: method.getTypeParameters(); > break; > case 4: method.toGenericString(); > break; > } > } catch (Exception e) { > success = false; > System.out.print("FAIL: "); > e.printStackTrace(System.out); > } > } > System.out.println(success ? "SUCCESS" : "FAILURE"); > } catch (Exception e) { > System.out.print("ERROR: "); > e.printStackTrace(System.out); > } > } > } > interface Sample { > public T test(T param) throws E; > } > Output on RI: > SUCCESS > Output on Harmony: > FAIL: java.lang.NullPointerException > at org.apache.harmony.lang.reflect.support.AuxiliaryFinder.findTypeVariable(AuxiliaryFinder.java:293) > at org.apache.harmony.lang.reflect.parser.Parser.getGenericParameterTypes(Parser.java:742) > at java.lang.reflect.Method.getGenericParameterTypes(Method.java:110) > at Test.main(Test.java:10) > FAIL: java.lang.NullPointerException > at org.apache.harmony.lang.reflect.support.AuxiliaryFinder.findTypeVariable(AuxiliaryFinder.java:293) > at org.apache.harmony.lang.reflect.parser.Parser.getGenericReturnTypeImpl(Parser.java:447) > at java.lang.reflect.Method.getGenericReturnType(Method.java:126) > at Test.main(Test.java:12) > FAIL: java.lang.NullPointerException > at org.apache.harmony.lang.reflect.support.AuxiliaryFinder.findTypeVariable(AuxiliaryFinder.java:293) > at org.apache.harmony.lang.reflect.parser.Parser.getGenericParameterTypes(Parser.java:742) > at java.lang.reflect.Method.toGenericString(Method.java:150) > at Test.main(Test.java:18) > FAILURE > This issue is critical as it prevents Geronimo Deployer from working on Harmony. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.