From f9d38b5091227bd05a9db0d07162252a05e741f2 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Sat, 18 Mar 2023 10:13:10 +0100 Subject: [PATCH] adapts to extended database format --- .../com/minres/scviewer/database/ftr/FtrRelation.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/plugins/com.minres.scviewer.database.ftr/src/com/minres/scviewer/database/ftr/FtrRelation.java b/plugins/com.minres.scviewer.database.ftr/src/com/minres/scviewer/database/ftr/FtrRelation.java index d265c24..86f73e4 100644 --- a/plugins/com.minres.scviewer.database.ftr/src/com/minres/scviewer/database/ftr/FtrRelation.java +++ b/plugins/com.minres.scviewer.database.ftr/src/com/minres/scviewer/database/ftr/FtrRelation.java @@ -28,6 +28,12 @@ class FtrRelation implements Serializable { /** The target. */ final long target; + /** The source. */ + final long source_fiber; + + /** The target. */ + final long target_fiber; + /** The relation type. */ final RelationType relationType; @@ -38,9 +44,11 @@ class FtrRelation implements Serializable { * @param source the source * @param target the target */ - public FtrRelation(RelationType relationType, long source, long target) { + public FtrRelation(RelationType relationType, long source, long target, long source_fiber, long target_fiber) { this.source = source; this.target = target; + this.source_fiber = source_fiber; + this.target_fiber = target_fiber; this.relationType = relationType; }