2026-03-17 13:31:18 -07:00

31 lines
675 B
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.baja.nre.util.Array
*/
package com.tridium.platform.license;
import javax.baja.nre.util.Array;
public class LicenseSync {
public Array toAdd;
public Array toUpdate;
public Array toRemove;
public boolean unchanged() {
boolean bl = false;
if (this.toAdd.size() == 0 && this.toUpdate.size() == 0 && this.toRemove.size() == 0) {
bl = true;
}
return bl;
}
public LicenseSync(Array array, Array array2, Array array3) {
this.toAdd = array;
this.toUpdate = array2;
this.toRemove = array3;
}
}