You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by "Paul Golick (JIRA)" <tu...@ws.apache.org> on 2006/04/24 20:43:05 UTC

[jira] Created: (TUSCANY-216) recent change to JavaFactoryImpl.java is not compatible with JDK 1.4

recent change to JavaFactoryImpl.java is not compatible with JDK 1.4
--------------------------------------------------------------------

         Key: TUSCANY-216
         URL: http://issues.apache.org/jira/browse/TUSCANY-216
     Project: Tuscany
        Type: Bug

  Components: Java SDO Implementation  
 Environment: svn version 396576
    Reporter: Paul Golick


The recent change used the valueOf(char) method of the Character class that was added in Java 1.5.  That method is not available in Java 1.4.  However, a constructor is available for both Java 1.4 and Java 1.5.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (TUSCANY-216) recent change to JavaFactoryImpl.java is not compatible with JDK 1.4

Posted by "Paul Golick (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-216?page=all ]

Paul Golick updated TUSCANY-216:
--------------------------------

    Attachment: svn142diff.txt

The attached patch suggests a fix that replaces the Character.valueOf method with a Character constructor.

> recent change to JavaFactoryImpl.java is not compatible with JDK 1.4
> --------------------------------------------------------------------
>
>          Key: TUSCANY-216
>          URL: http://issues.apache.org/jira/browse/TUSCANY-216
>      Project: Tuscany
>         Type: Bug

>   Components: Java SDO Implementation
>  Environment: svn version 396576
>     Reporter: Paul Golick
>  Attachments: svn142diff.txt
>
> The recent change used the valueOf(char) method of the Character class that was added in Java 1.5.  That method is not available in Java 1.4.  However, a constructor is available for both Java 1.4 and Java 1.5.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (TUSCANY-216) recent change to JavaFactoryImpl.java is not compatible with JDK 1.4

Posted by "Frank Budinsky (JIRA)" <tu...@ws.apache.org>.
    [ http://issues.apache.org/jira/browse/TUSCANY-216?page=comments#action_12376113 ] 

Frank Budinsky commented on TUSCANY-216:
----------------------------------------

Paul, As the reporter of the bug, can't you close it?


> recent change to JavaFactoryImpl.java is not compatible with JDK 1.4
> --------------------------------------------------------------------
>
>          Key: TUSCANY-216
>          URL: http://issues.apache.org/jira/browse/TUSCANY-216
>      Project: Tuscany
>         Type: Bug

>   Components: Java SDO Implementation
>  Environment: svn version 396576
>     Reporter: Paul Golick
>  Attachments: svn142diff.txt
>
> The recent change used the valueOf(char) method of the Character class that was added in Java 1.5.  That method is not available in Java 1.4.  However, a constructor is available for both Java 1.4 and Java 1.5.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (TUSCANY-216) recent change to JavaFactoryImpl.java is not compatible with JDK 1.4

Posted by "Paul Golick (JIRA)" <tu...@ws.apache.org>.
    [ http://issues.apache.org/jira/browse/TUSCANY-216?page=comments#action_12376116 ] 

Paul Golick commented on TUSCANY-216:
-------------------------------------

I have no authority to do any workflow operations.  The operations I am permitted are limited to attach file, attach screenshot, clone, comment, create sub-task, voting, and watching.  I would have thought the reporter would be able to close, but I cannot.

> recent change to JavaFactoryImpl.java is not compatible with JDK 1.4
> --------------------------------------------------------------------
>
>          Key: TUSCANY-216
>          URL: http://issues.apache.org/jira/browse/TUSCANY-216
>      Project: Tuscany
>         Type: Bug

>   Components: Java SDO Implementation
>  Environment: svn version 396576
>     Reporter: Paul Golick
>  Attachments: svn142diff.txt
>
> The recent change used the valueOf(char) method of the Character class that was added in Java 1.5.  That method is not available in Java 1.4.  However, a constructor is available for both Java 1.4 and Java 1.5.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (TUSCANY-216) recent change to JavaFactoryImpl.java is not compatible with JDK 1.4

Posted by "Frank Budinsky (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-216?page=all ]
     
Frank Budinsky resolved TUSCANY-216:
------------------------------------

    Resolution: Fixed

Committed patch in revision 396664.

> recent change to JavaFactoryImpl.java is not compatible with JDK 1.4
> --------------------------------------------------------------------
>
>          Key: TUSCANY-216
>          URL: http://issues.apache.org/jira/browse/TUSCANY-216
>      Project: Tuscany
>         Type: Bug

>   Components: Java SDO Implementation
>  Environment: svn version 396576
>     Reporter: Paul Golick
>  Attachments: svn142diff.txt
>
> The recent change used the valueOf(char) method of the Character class that was added in Java 1.5.  That method is not available in Java 1.4.  However, a constructor is available for both Java 1.4 and Java 1.5.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (TUSCANY-216) recent change to JavaFactoryImpl.java is not compatible with JDK 1.4

Posted by "Frank Budinsky (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-216?page=all ]
     
Frank Budinsky closed TUSCANY-216:
----------------------------------


> recent change to JavaFactoryImpl.java is not compatible with JDK 1.4
> --------------------------------------------------------------------
>
>          Key: TUSCANY-216
>          URL: http://issues.apache.org/jira/browse/TUSCANY-216
>      Project: Tuscany
>         Type: Bug

>   Components: Java SDO Implementation
>  Environment: svn version 396576
>     Reporter: Paul Golick
>  Attachments: svn142diff.txt
>
> The recent change used the valueOf(char) method of the Character class that was added in Java 1.5.  That method is not available in Java 1.4.  However, a constructor is available for both Java 1.4 and Java 1.5.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (TUSCANY-216) recent change to JavaFactoryImpl.java is not compatible with JDK 1.4

Posted by "Paul Golick (JIRA)" <tu...@ws.apache.org>.
    [ http://issues.apache.org/jira/browse/TUSCANY-216?page=comments#action_12376111 ] 

Paul Golick commented on TUSCANY-216:
-------------------------------------

Please close this issue.  I have verified it in revision 396677.

> recent change to JavaFactoryImpl.java is not compatible with JDK 1.4
> --------------------------------------------------------------------
>
>          Key: TUSCANY-216
>          URL: http://issues.apache.org/jira/browse/TUSCANY-216
>      Project: Tuscany
>         Type: Bug

>   Components: Java SDO Implementation
>  Environment: svn version 396576
>     Reporter: Paul Golick
>  Attachments: svn142diff.txt
>
> The recent change used the valueOf(char) method of the Character class that was added in Java 1.5.  That method is not available in Java 1.4.  However, a constructor is available for both Java 1.4 and Java 1.5.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira