File tree Expand file tree Collapse file tree
sqldev/src/main/java/org/utplsql/sqldev/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616package org.utplsql.sqldev.model
1717
1818import org.eclipse.xtext.xbase.lib.util.ToStringBuilder
19- import org.springframework.core.style.ToStringStyler
2019
2120abstract class AbstractModel {
22- static final ToStringStyler STYLER = new UtplsqlToStringStyler ();
2321
2422 override toString () {
2523 new ToStringBuilder (this ). addAllFields. toString
2624 }
2725
2826 def getStyler () {
29- return STYLER ;
27+ return UtplsqlToStringStyler . STYLER ;
3028 }
3129}
Original file line number Diff line number Diff line change 1616package org .utplsql .sqldev .model ;
1717
1818import org .springframework .core .style .DefaultToStringStyler ;
19+ import org .springframework .core .style .ToStringStyler ;
1920import org .springframework .util .ClassUtils ;
2021
2122public class UtplsqlToStringStyler extends DefaultToStringStyler {
23+ public static final ToStringStyler STYLER = new UtplsqlToStringStyler ();
2224
2325 public UtplsqlToStringStyler () {
2426 super (new UtplsqlValueStyler ());
You can’t perform that action at this time.
0 commit comments