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 164876 Details for
Bug 305961
NPE in org.eclipse.ui.dialogs.WizardNewFileCreationPage#isFilteredByParent
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]
Additional fix
patch.txt (text/plain), 1.75 KB, created by
Serge Beauchamp
on 2010-04-14 15:15:45 EDT
(
hide
)
Description:
Additional fix
Filename:
MIME Type:
Creator:
Serge Beauchamp
Created:
2010-04-14 15:15:45 EDT
Size:
1.75 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.ui.ide >Index: extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java,v >retrieving revision 1.33 >diff -u -r1.33 WizardNewFileCreationPage.java >--- extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java 12 Apr 2010 12:07:20 -0000 1.33 >+++ extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java 14 Apr 2010 19:13:00 -0000 >@@ -868,7 +868,7 @@ > } > > private boolean isFilteredByParent() { >- if (linkedResourceGroup.isEnabled()) >+ if ((linkedResourceGroup == null) || linkedResourceGroup.isEnabled()) > return false; > IPath containerPath = resourceGroup.getContainerFullPath(); > if (containerPath == null) >Index: extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java,v >retrieving revision 1.40 >diff -u -r1.40 WizardNewFolderMainPage.java >--- extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java 12 Apr 2010 12:07:20 -0000 1.40 >+++ extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java 14 Apr 2010 19:13:01 -0000 >@@ -794,7 +794,7 @@ > boolean createVirtualFolder = useVirtualFolder != null && useVirtualFolder.getSelection(); > if (createVirtualFolder) > return false; >- if (linkedResourceGroup.isEnabled()) >+ if ((linkedResourceGroup == null) || linkedResourceGroup.isEnabled()) > return false; > IPath containerPath = resourceGroup.getContainerFullPath(); > if (containerPath == null)
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 305961
:
162153
| 164876