]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.procore/src/fi/vtt/simantics/procore/internal/ClusterChange2.java
Merge "Better emptying of trash bin"
[simantics/platform.git] / bundles / org.simantics.db.procore / src / fi / vtt / simantics / procore / internal / ClusterChange2.java
index 57bbd44049052c696bc627ea7e7bc816634a3db4..234f2ada433ab8d858038cb8b26d732bf1121add 100644 (file)
@@ -2,11 +2,10 @@ package fi.vtt.simantics.procore.internal;
 
 import java.util.Arrays;
 
-import org.simantics.db.procore.cluster.ClusterImpl;
 import org.simantics.db.service.Bytes;
 import org.simantics.db.service.ClusterUID;
 
-class ClusterChange2 {
+public class ClusterChange2 {
     public static final int VERSION = 2;
     public static final byte SET_IMMUTABLE_OPERATION = 1; // <byte : 0 = false>
     public static final byte UNDO_VALUE_OPERATION = 2; // <int : resource index>
@@ -16,7 +15,7 @@ class ClusterChange2 {
     private byte[] bytes;
     private int byteIndex;
     private ClusterUID clusterUID;
-    ClusterChange2(ClusterUID clusterUID, ClusterImpl cluster) {
+    ClusterChange2(ClusterUID clusterUID) {
         this.clusterUID = clusterUID;
         init();
     }