We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b41166b commit a83536cCopy full SHA for a83536c
1 file changed
sqldev/src/main/java/org/utplsql/sqldev/model/AbstractModel.java
@@ -13,17 +13,13 @@
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*/
16
-package org.utplsql.sqldev.model
+package org.utplsql.sqldev.model;
17
18
-import org.eclipse.xtext.xbase.lib.util.ToStringBuilder
+import org.springframework.core.style.ToStringStyler;
19
20
-abstract class AbstractModel {
21
-
22
- override toString() {
23
- new ToStringBuilder(this).addAllFields.toString
24
- }
25
26
- def getStyler() {
27
- return UtplsqlToStringStyler.STYLER;
28
+public abstract class AbstractModel {
+
+ public ToStringStyler getStyler() {
+ return UtplsqlToStringStyler.STYLER;
+ }
29
}
0 commit comments