denio7 / egit

Automatically exported from code.google.com/p/egit
0 stars 0 forks source link

Plugin loses track of project sharing when moving projects #60

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Share a project in a repo
2. Move and rename a project using Refactor-Move. Those are two different
operations.
3. Restart workbench. Lots of errors will appear and you cannot use the
plugin on the project.

It might be that only one of move/rename is necessary to replicate this
bug. The problems start in GitProjectData.load when the plugin tries
to load data for a project that does not exist. 

    private GitProjectData load() throws IOException {
        final File dat = propertyFile();
        trace("load " + dat);

To fix this the plugin must handle project renames/moves explicitly.

Original issue reported on code.google.com by robin.ro...@gmail.com on 24 Feb 2009 at 7:43

GoogleCodeExporter commented 8 years ago

Original comment by robin.ro...@gmail.com on 24 Feb 2009 at 8:26