You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2007/10/17 09:44:51 UTC

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

     [ https://issues.apache.org/jira/browse/HARMONY-2598?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess closed HARMONY-2598.
---------------------------------


No response. Assuming it is okay.  It can be reopened if anyone can still reproduce this.


> [classlib][awt] java.awt.Graphics2D.drawLine throws NPE if color is set to null
> -------------------------------------------------------------------------------
>
>                 Key: HARMONY-2598
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2598
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: windows
>            Reporter: Alexander Simbirtsev
>            Assignee: Mark Hindess
>         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.
-
You can reply to this email to add a comment to the issue online.