Disable dumping

This commit is contained in:
József Farkas
2016-06-26 16:37:12 +02:00
committed by GitHub
parent ebbe1559fc
commit fd40e18761

View File

@@ -6,7 +6,7 @@ export abstract class Serializable<T> {
private static depth = 0;
private static maxDisplayedJsonLength = 160;
private static enableDump = true;
private static enableDump = false;
fromJsObject(jsObject: any): T {
this.dump(`${this.getIndentation()}${this.constructor.name}.fromJsObject: ` +