|
@ -36,13 +36,13 @@ public class LogDataTransform {
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
public LogDataTransform getLogTransform() {
|
|
|
public static LogDataTransform getLogTransform() {
|
|
|
synchronized (obj) {
|
|
|
if (this.instance == null) {
|
|
|
this.instance = new LogDataTransform();
|
|
|
if (instance == null) {
|
|
|
instance = new LogDataTransform();
|
|
|
}
|
|
|
}
|
|
|
return this.instance;
|
|
|
return instance;
|
|
|
}
|
|
|
|
|
|
/**
|