This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 31273 - Shortcut to target wizard doesn't show mounted filesystems
Summary: Shortcut to target wizard doesn't show mounted filesystems
Status: VERIFIED FIXED
Alias: None
Product: projects
Classification: Unclassified
Component: Ant (show other bugs)
Version: -S1S-
Hardware: All All
: P2 blocker (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks: 28214
  Show dependency tree
 
Reported: 2003-02-20 16:01 UTC by Milan Kubec
Modified: 2003-07-11 12:54 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Milan Kubec 2003-02-20 16:01:35 UTC
7th panel of Shortcut to target wizard (Add to
Filesystems) doesn't list mounted filesystems,
just one empty node called Workplace.
Comment 1 Jesse Glick 2003-02-20 18:17:56 UTC
Regression of my fix of issue #28214.

ShortcutIterator.java:
-----------------------------
revision 1.6
date: 2003/02/12 12:29:27;  author: dbalek;  state: Exp;  lines: +15 -11
Issue #30807 fixed.
Removing dependency on deprecated openide API.
-----------------------------
revision 1.4
date: 2003/01/17 15:48:03;  author: jglick;  state: Exp;  lines: +2 -1
#28214: add project shortcuts to Filesystems, not Project tab.
-----------------------------


TopManager.getDefault ().getPlaces ().nodes ().repository()

was replaced with

Repository.getDefault().getDefaultFileSystem().findResource("Workplace")).getNodeDelegate()

which is wrong. Should rather be

RepositoryNodeFactory.getDefault().repository(DataFilter.ALL)
Comment 2 Dusan Balek 2003-02-21 09:08:13 UTC
Fixed.
Comment 3 Milan Kubec 2003-07-11 12:54:43 UTC
Verified.