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 119293 Details for
Bug 202602
support: comments in source
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]
SQLQuerySourceWriter add a space to leading multiline comment
patchBZ202602.txt (text/plain), 1.29 KB, created by
Duncan Rigby
on 2008-12-02 12:27:30 EST
(
hide
)
Description:
SQLQuerySourceWriter add a space to leading multiline comment
Filename:
MIME Type:
Creator:
Duncan Rigby
Created:
2008-12-02 12:27:30 EST
Size:
1.29 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.datatools.modelbase.sql.query >Index: src/org/eclipse/datatools/modelbase/sql/query/util/SQLQuerySourceWriter.java >=================================================================== >RCS file: /cvsroot/datatools/org.eclipse.datatools.modelbase/plugins/org.eclipse.datatools.modelbase.sql.query/src/org/eclipse/datatools/modelbase/sql/query/util/SQLQuerySourceWriter.java,v >retrieving revision 1.7 >diff -u -r1.7 SQLQuerySourceWriter.java >--- src/org/eclipse/datatools/modelbase/sql/query/util/SQLQuerySourceWriter.java 19 Nov 2008 01:55:46 -0000 1.7 >+++ src/org/eclipse/datatools/modelbase/sql/query/util/SQLQuerySourceWriter.java 2 Dec 2008 17:20:01 -0000 >@@ -1193,6 +1193,11 @@ > if (trimText.startsWith(COMMENT_PREFIX_MULTI_LINE) == false) { > sbComment.append(COMMENT_PREFIX_MULTI_LINE); > } >+ // BZ 202602 drigby 02 Dec 2008 >+ // If the comment is a multiline comment padd with 1 leading space >+ if (trimText.startsWith(COMMENT_PREFIX_MULTI_LINE)) { >+ sbComment.append(" "); >+ } > sbComment.append(text); > if (trimText.endsWith(COMMENT_SUFFIX_MULTI_LINE) == false) { > sbComment.append(COMMENT_SUFFIX_MULTI_LINE);
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
Flags:
drigby
:
review?
Actions:
View
|
Diff
Attachments on
bug 202602
:
119174
| 119293