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 83290 Details for
Bug 207567
HTML2TextReader reader get stuck in infinite loop
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]
Stop loop
clipboard.txt (text/plain), 1015 bytes, created by
George Lindholm
on 2007-11-19 19:34:05 EST
(
hide
)
Description:
Stop loop
Filename:
MIME Type:
Creator:
George Lindholm
Created:
2007-11-19 19:34:05 EST
Size:
1015 bytes
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.mylyn.jira.ui >Index: src/org/eclipse/mylyn/internal/jira/ui/html/HTML2TextReader.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.mylyn/org.eclipse.mylyn.jira.ui/src/org/eclipse/mylyn/internal/jira/ui/html/HTML2TextReader.java,v >retrieving revision 1.5 >diff -u -r1.5 HTML2TextReader.java >--- src/org/eclipse/mylyn/internal/jira/ui/html/HTML2TextReader.java 3 Nov 2007 01:23:15 -0000 1.5 >+++ src/org/eclipse/mylyn/internal/jira/ui/html/HTML2TextReader.java 20 Nov 2007 00:32:56 -0000 >@@ -88,7 +88,7 @@ > > /** > * Transforms the HTML text from the reader to formatted text. >- * >+ * > * @param reader > * the reader > * @param presentation >@@ -140,7 +140,9 @@ > @Override > protected String computeSubstitution(int c) throws IOException { > >- if (c == '<') >+ if (c == -1) { >+ return null; >+ } else if (c == '<') > return processHTMLTag(); > else if (fIgnore) > return EMPTY_STRING;
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 207567
:
83280
| 83290 |
83291
|
83298
|
83299