You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexander D Shipilov (JIRA)" <ji...@apache.org> on 2006/12/27 12:52:22 UTC

[jira] Updated: (HARMONY-2598) [classlib][awt] java.awt.Graphics2D.drawLine throws NPE if color is set to null

     [ http://issues.apache.org/jira/browse/HARMONY-2598?page=all ]

Alexander D Shipilov updated HARMONY-2598:
------------------------------------------

    Attachment: CommonGraphics2D2598.patch

Suggested fix

> [classlib][awt] java.awt.Graphics2D.drawLine throws NPE if color is set to null
> -------------------------------------------------------------------------------
>
>                 Key: HARMONY-2598
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2598
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: windows
>            Reporter: Alexander Simbirtsev
>         Attachments: CommonGraphics2D2598.patch, CommonGraphics2D2598Test.patch
>
>
> java.awt.Graphics2D.drawLine throws NPE if color is set to null while RI doesn't
> here's the code to reproduce:
> import java.awt.Graphics2D;
> import java.awt.image.BufferedImage;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {
>         Graphics2D g = new BufferedImage(56, 56,
>                                          BufferedImage.TYPE_INT_RGB).createGraphics(); 
>         g.setColor(null);
>         try {
>             g.drawLine(0, 0, 10, 10);
>         } catch (NullPointerException e) {
>             fail("NullPointerException is thrown");
>         }
>     }
> }

-- 
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