You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some projects with a hierarchy like this:
"Other Sources"
"src/main/resources/"
"<default package>"
After enabling this perforce plugin (thank you thank you thank you for
building this), the "<default package>" text turns blank.
I've never written a nb module, so I'm not sure why or if this is the right
way to fix this, but I can resolve it by replacing "<" and ">" with "<"
and ">" in the VCSAnnotator.
In particular, in PerforceVersioningSystem.java, in
annotatePerforceName(...), I add this to the top and bottom (where "name"
is returned).
replace:
return name;
with:
return name.replace("<", "<").replace(">", ">");
Original issue reported on code.google.com by ElliotL...@gmail.com on 11 Nov 2009 at 2:57
The text was updated successfully, but these errors were encountered:
Actually, maybe the "right" way to do this is to return null here if you have no
annotation to specify.
I replaced the
name.replace("<", "<").replace(">", ">");
lines above with just:
return null;
and the node shows up fine.
Original comment by ElliotL...@gmail.com on 11 Nov 2009 at 4:07
Original issue reported on code.google.com by
ElliotL...@gmail.com
on 11 Nov 2009 at 2:57The text was updated successfully, but these errors were encountered: