I’m working in a small team of two, with SVN for version control and Java/Eclipse.
The other guy wants to see compiler warnings of a certain kind (“Unqualified access to instance field.”), but I don’t. So I’m wondering if it’s possible in Eclipse to have a different set of compiler warnings for each developer, while still working on the same SVN repository. Thanks in advance!
I’m working in a small team of two, with SVN for version control and
Share
Yes, you can add a filter to the Problems view to filter the warnings you don’t want to see. You should also exclude your
.settingsfrom SVN as Pablo suggested, so that your partner doesn’t accidentally pickup this change in his environment via SVN. To add a filter, click the arrow in Problems view:See Eclipse Help for more info on the filtering.