set global before informing of change so if there's a query result

will match what was sent
This commit is contained in:
Eric House 2013-08-12 08:13:58 -07:00
parent fde50cce32
commit 0ba0530bf3

View file

@ -118,12 +118,12 @@ public class NetStateCache {
}
if ( s_netAvail != netAvail ) {
s_netAvail = netAvail;
Iterator<StateChangedIf> iter = s_ifs.iterator();
while ( iter.hasNext() ) {
StateChangedIf proc = iter.next();
proc.netAvail( netAvail );
}
s_netAvail = netAvail;
}
}
}