dbflute / dbflute-core

DBFlute core libraries for Java8
http://dbflute.seasar.org/
23 stars 18 forks source link

DBFlute Runtime: OutsideSql, and-adjustment broken by line comment #180

Open jflute opened 11 months ago

jflute commented 11 months ago

and-adjustment of BEGIN comment is broken by line comment on IF comment line.

 /*BEGIN*/
 where
   /*IF pmb.memberId != null*/
   mb.MEMBER_ID = /*pmb.memberId*/3
   /*END*/
   /*IF pmb.memberName != null*/ -- // "and" adjustment is broken by this comment
   and mb.MEMBER_NAME like /*pmb.memberName*/'S%' -- // safety
   /*END*/