Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 91014 Details for
Bug 162140
[Progress] Be more resilient to null args in StatusLine's progress monitor
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Proposal patch
statusLine.patch (text/plain), 1.00 KB, created by
Jan-Hendrik Diederich
on 2008-02-28 10:56:10 EST
(
hide
)
Description:
Proposal patch
Filename:
MIME Type:
Creator:
Jan-Hendrik Diederich
Created:
2008-02-28 10:56:10 EST
Size:
1.00 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jface >Index: src/org/eclipse/jface/action/StatusLine.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.jface/src/org/eclipse/jface/action/StatusLine.java,v >retrieving revision 1.20 >diff -u -r1.20 StatusLine.java >--- src/org/eclipse/jface/action/StatusLine.java 7 Jan 2008 16:06:23 -0000 1.20 >+++ src/org/eclipse/jface/action/StatusLine.java 28 Feb 2008 15:53:38 -0000 >@@ -535,6 +535,9 @@ > * @see IProgressMonitor#setTaskName(java.lang.String) > */ > public void setTaskName(String name) { >+ if (name == null) { >+ throw new NullPointerException(); >+ } > fTaskName = name; > } > >@@ -590,6 +593,10 @@ > * @see IProgressMonitor#subTask(String) > */ > public void subTask(String name) { >+ if (name == null) { >+ throw new NullPointerException(); >+ } >+ > String text; > if (fTaskName.length() == 0) { > text = name;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 162140
: 91014