Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 98962 Details for
Bug 150314
dev-util/eclipse-sdk-3.2.1 patchset update
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
eclipse-sdk-3.2.1-bz162177.patch
eclipse-sdk-3.2.1-bz162177.patch (text/plain), 1.43 KB, created by
Federico Fissore
on 2006-10-06 13:16:38 UTC
(
hide
)
Description:
eclipse-sdk-3.2.1-bz162177.patch
Filename:
MIME Type:
Creator:
Federico Fissore
Created:
2006-10-06 13:16:38 UTC
Size:
1.43 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jdt.core >Index: batch/org/eclipse/jdt/internal/compiler/batch/Main.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java,v >retrieving revision 1.254 >diff -u -r1.254 Main.java >--- batch/org/eclipse/jdt/internal/compiler/batch/Main.java 2 May 2006 13:45:31 -0000 1.254 >+++ batch/org/eclipse/jdt/internal/compiler/batch/Main.java 8 Jun 2006 21:07:50 -0000 >@@ -2986,6 +2986,8 @@ > final int rulesStart = 5; > // 'path[' 'path1;path2[' > final int rulesReadyToClose = 6; >+ // '[name].jar' >+ final int pathBeginsWithSquareBracket = 7; > // 'path[rule' 'path[rule1;rule2' > final int error = 99; > int state = start; >@@ -3011,6 +3013,9 @@ > } > } else if (token.equals("[")) { //$NON-NLS-1$ > switch (state) { >+ case start: >+ state = pathBeginsWithSquareBracket; >+ break; > case readyToClose: > state = rulesStart; > break; >@@ -3039,6 +3044,16 @@ > state = rulesReadyToClose; > currentRuleSpecs.add(token); > break; >+ case pathBeginsWithSquareBracket: >+ String name = "[" + token; //$NON-NLS-1$ >+ while (tokenizer.hasMoreTokens()) { >+ name = name.concat(tokenizer.nextToken()); >+ if (name.endsWith(".jar")) //$NON-NLS-1$ >+ break; >+ } >+ currentClasspathName = name; >+ state = readyToClose; >+ break; > default: > state = error; > }
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 150314
:
98957
|
98958
|
98959
|
98960
|
98961
| 98962 |
98963
|
98964
|
98965
|
98967
|
98968
|
98969
|
98971
|
98972
|
98973
|
98974
|
98975
|
98976
|
98977
|
98978
|
98979
|
98981
|
98982
|
98983
|
98984
|
98985
|
98986
|
98987
|
98988
|
98989
|
98990
|
98991
|
98992
|
98993
|
98994