промежуточный. переходный момент в рефакторинге багов. нужен для патча.

This commit is contained in:
2025-12-15 20:45:31 +03:00
parent c0bdad60ef
commit 42b179a0cc
7 changed files with 61 additions and 3 deletions

View File

@@ -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;