промежуточный. переходный момент в рефакторинге багов. нужен для патча.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
package _VisualDVM.ComponentsServer.BugReport;
|
||||
import Common.CommonConstants;
|
||||
import Common.Database.Objects.DBObject;
|
||||
import Common.Database.Objects.rDBObject;
|
||||
import Common.Utils.TextLog;
|
||||
@@ -18,6 +19,10 @@ import java.nio.file.Paths;
|
||||
import java.util.Date;
|
||||
import java.util.Vector;
|
||||
public class BugReport extends rDBObject {
|
||||
//---
|
||||
@Description("DEFAULT '-1'")
|
||||
public int id_ = CommonConstants.Nan;
|
||||
//---
|
||||
public String project_version = "";
|
||||
public long visualiser_version = -1;
|
||||
public long sapfor_version = -1;
|
||||
@@ -62,6 +67,7 @@ public class BugReport extends rDBObject {
|
||||
public void SynchronizeFields(DBObject src) {
|
||||
super.SynchronizeFields(src);
|
||||
BugReport b = (BugReport) src;
|
||||
id_ = b.id_;
|
||||
change_date = b.change_date;
|
||||
description = b.description;
|
||||
comment = b.comment;
|
||||
|
||||
Reference in New Issue
Block a user