Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 78476 Details for
Bug 129709
[relengtool] Load Map Projects functionality sets version tag for "HEAD"
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
new patch
rtools.txt (text/plain), 1.20 KB, created by
DJ Houghton
on 2007-09-14 16:57:34 EDT
(
hide
)
Description:
new patch
Filename:
MIME Type:
Creator:
DJ Houghton
Created:
2007-09-14 16:57:34 EDT
Size:
1.20 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.releng.tools >Index: src/org/eclipse/releng/tools/MapEntry.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.releng.tools/src/org/eclipse/releng/tools/MapEntry.java,v >retrieving revision 1.7 >diff -u -r1.7 MapEntry.java >--- src/org/eclipse/releng/tools/MapEntry.java 13 Sep 2007 17:31:25 -0000 1.7 >+++ src/org/eclipse/releng/tools/MapEntry.java 14 Sep 2007 20:56:02 -0000 >@@ -23,6 +23,7 @@ > */ > public class MapEntry { > >+ private static final String HEAD = "HEAD"; > private static final String KEY_TAG = "tag"; //$NON-NLS-1$ > private static final String KEY_PATH = "path"; //$NON-NLS-1$ > private static final String KEY_CVSROOT = "cvsRoot"; //$NON-NLS-1$ >@@ -205,11 +206,11 @@ > > public String getTagName() { > String value = (String) arguments.get(KEY_TAG); >- return value == null ? EMPTY_STRING : value; >+ return value == null || HEAD.equals(value) ? EMPTY_STRING : value; > } > > public CVSTag getTag() { >- if (getTagName().equals("HEAD")) return CVSTag.DEFAULT; >+ if (getTagName().equals(HEAD)) return CVSTag.DEFAULT; > return new CVSTag(getTagName(), CVSTag.VERSION); > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 129709
:
36583
|
78467
| 78476