LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Advertise
  • Mirrors
  • Logos
  • Contact us
  • Job Opportunity
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Cvs-checkins > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: cvs at opencores.org<cvs@o...>
    Date: Tue Feb 26 20:38:30 CET 2008
    Subject: [cvs-checkins] MODIFIED: jop ...
    Top
    Date: 00/08/02 26:20:38

    Modified: jop/java/tools/src/joptimizer/config JopConfig.java
    Log:
    bugfix for missing appconfig

    bugfix for invokespecial of non-private methods


    Revision Changes Path
    1.9 jop/java/tools/src/joptimizer/config/JopConfig.java

    http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/joptimizer/config/JopConfig.java.diff?r1=1.8&r2=1.9

    (In the diff below, changes in quantity of whitespace are not shown.)

    Index: JopConfig.java
    ===================================================================
    RCS file: /cvsroot/stefant/jop/java/tools/src/joptimizer/config/JopConfig.java,v
    retrieving revision 1.8
    retrieving revision 1.9
    diff -u -b -r1.8 -r1.9
    --- JopConfig.java 25 Feb 2008 23:30:40 -0000 1.8
    +++ JopConfig.java 26 Feb 2008 19:38:30 -0000 1.9
    @@ -179,11 +179,17 @@
    public void initArchitecture(String arch) throws ConfigurationException {
    if ( "jop".equals(arch) ) {
    URL config = getClass().getResource("jop-arch.properties");
    + if ( config == null ) {
    + throw new ConfigurationException("Could not find resource {jop-arch.properties}.");
    + }
    setArchConfig(config);

    } else if ( "jvm".equals(arch) ) {

    URL config = getClass().getResource("jvm-arch.properties");
    + if ( config == null ) {
    + throw new ConfigurationException("Could not find resource {jwm-arch.properties}.");
    + }
    setArchConfig(config);

    if ( !isSet(CONF_LIBRARY_PATH) ) {



     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.