You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by jg...@apache.org on 2008/12/16 17:41:12 UTC

svn commit: r727082 - in /ibatis/trunk/java/tools/ibator/core: doc/ReleaseNotes.txt htmldoc/whatsNew.html src/org/apache/ibatis/ibator/plugins/SqlMapConfigPlugin.java

Author: jgbutler
Date: Tue Dec 16 08:41:11 2008
New Revision: 727082

URL: http://svn.apache.org/viewvc?rev=727082&view=rev
Log:
[ibator] Fix for IBATIS-565 - ill formed comment in SqlMapConfigPlugin

Modified:
    ibatis/trunk/java/tools/ibator/core/doc/ReleaseNotes.txt
    ibatis/trunk/java/tools/ibator/core/htmldoc/whatsNew.html
    ibatis/trunk/java/tools/ibator/core/src/org/apache/ibatis/ibator/plugins/SqlMapConfigPlugin.java

Modified: ibatis/trunk/java/tools/ibator/core/doc/ReleaseNotes.txt
URL: http://svn.apache.org/viewvc/ibatis/trunk/java/tools/ibator/core/doc/ReleaseNotes.txt?rev=727082&r1=727081&r2=727082&view=diff
==============================================================================
--- ibatis/trunk/java/tools/ibator/core/doc/ReleaseNotes.txt (original)
+++ ibatis/trunk/java/tools/ibator/core/doc/ReleaseNotes.txt Tue Dec 16 08:41:11 2008
@@ -4,6 +4,7 @@
 Bugs:
 1. Fixed IbatorObjectFactory so that it will find internal classes on the
    context classloader.
+2. Fixed IBATIS-565 - ill formed comment in the SqlMapConfigPlugin.
 
 Enhancements:
 1. Modified plugin methods for model fields, getters, and setters so that

Modified: ibatis/trunk/java/tools/ibator/core/htmldoc/whatsNew.html
URL: http://svn.apache.org/viewvc/ibatis/trunk/java/tools/ibator/core/htmldoc/whatsNew.html?rev=727082&r1=727081&r2=727082&view=diff
==============================================================================
--- ibatis/trunk/java/tools/ibator/core/htmldoc/whatsNew.html (original)
+++ ibatis/trunk/java/tools/ibator/core/htmldoc/whatsNew.html Tue Dec 16 08:41:11 2008
@@ -20,6 +20,7 @@
 <h3>Bugs Fixed</h3>
 <ul>
   <li>Fixed the IbatorObjectFactory so it will find internal classes from the context classloader.</li>
+  <li>Fixed IBATIS-565 - ill formed comment in the SqlMapConfigPlugin</li>
 </ul>
 
 <h3>Enhancements</h3>

Modified: ibatis/trunk/java/tools/ibator/core/src/org/apache/ibatis/ibator/plugins/SqlMapConfigPlugin.java
URL: http://svn.apache.org/viewvc/ibatis/trunk/java/tools/ibator/core/src/org/apache/ibatis/ibator/plugins/SqlMapConfigPlugin.java?rev=727082&r1=727081&r2=727082&view=diff
==============================================================================
--- ibatis/trunk/java/tools/ibator/core/src/org/apache/ibatis/ibator/plugins/SqlMapConfigPlugin.java (original)
+++ ibatis/trunk/java/tools/ibator/core/src/org/apache/ibatis/ibator/plugins/SqlMapConfigPlugin.java Tue Dec 16 08:41:11 2008
@@ -84,7 +84,7 @@
         XmlElement root = new XmlElement("sqlMapConfig"); //$NON-NLS-1$
         document.setRootElement(root);
         
-        root.addElement(new TextElement("<--")); //$NON-NLS-1$
+        root.addElement(new TextElement("<!--")); //$NON-NLS-1$
         root.addElement(new TextElement(
             "  This file is generated by Apache iBATIS ibator.")); //$NON-NLS-1$
         root.addElement(new TextElement(