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 13223 - CVS Remove doesn't call DataObject.delete()
Summary: CVS Remove doesn't call DataObject.delete()
Status: VERIFIED WONTFIX
Alias: None
Product: obsolete
Classification: Unclassified
Component: vcscvs (show other bugs)
Version: -FFJ-
Hardware: Sun Solaris
: P2 blocker (vote)
Assignee: issues@obsolete
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-06-26 20:39 UTC by _ gfink
Modified: 2001-07-31 10:30 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 _ gfink 2001-06-26 20:39:31 UTC
In Web Module, we need to release locks on some of our data objects before
they can be deleted (or deletion fails).  

But our DataObject.handleDelete() methods never get called from a CVS remove
operation.

Removing DataObjects should go through DataObject.delete()
Comment 1 _ gfink 2001-06-26 20:40:04 UTC
P2 issue.
Comment 2 Martin Entlicher 2001-06-27 10:46:42 UTC
There is no mechanism how to recognize commands, which delete local files. It's
not possible in general, because external processes are spawned and they can do
whatever they want.
Please note, that not only cvs remove can remove local files, but also cvs
update. This is unpredictable to know which files will be deleted.
You would need to consider it the same case as when one delete the file
externally.
Comment 3 Jiri Kovalsky 2001-07-31 10:30:46 UTC
I agree with Martin's WON'T FIX description and therefore verify this 
issue. We can't do these kind of things.