fix ANDROID-42: copy/paste error

This commit is contained in:
Brenton Bostick 2023-02-06 07:27:44 -05:00
parent 6102c70855
commit d5944ae69c

View file

@ -118,15 +118,15 @@ public final class VirtualNetworkConfig implements Comparable<VirtualNetworkConf
} }
if (this.broadcastEnabled != cfg.broadcastEnabled) { if (this.broadcastEnabled != cfg.broadcastEnabled) {
Log.i(TAG, "Broadcast Flag Changed. Old: "+ this.broadcastEnabled +", New: " + this.broadcastEnabled); Log.i(TAG, "Broadcast Flag Changed. Old: "+ this.broadcastEnabled +", New: " + cfg.broadcastEnabled);
} }
if (this.portError != cfg.portError) { if (this.portError != cfg.portError) {
Log.i(TAG, "Port Error Changed. Old: " + this.portError + ", New: " + this.portError); Log.i(TAG, "Port Error Changed. Old: " + this.portError + ", New: " + cfg.portError);
} }
if (this.enabled != cfg.enabled) { if (this.enabled != cfg.enabled) {
Log.i(TAG, "Enabled Changed. Old: " + this.enabled + ", New: " + this.enabled); Log.i(TAG, "Enabled Changed. Old: " + this.enabled + ", New: " + cfg.enabled);
} }
if (!aaEqual) { if (!aaEqual) {