remove commented-out logging

This commit is contained in:
Eric House 2014-11-25 07:16:43 -08:00
parent 938756a34f
commit 2df8c68e60

View file

@ -2146,7 +2146,6 @@ public class DBUtils {
for ( CommsConnType value : values ) {
int ord = value.ordinal();
if ( 0 != (asInt & (1 << (ord - 1)))) {
// DbgUtils.logf( "intToConnTypeSet: adding %s", value.toString() );
result.add( value );
}
}
@ -2162,7 +2161,6 @@ public class DBUtils {
int result = BIT_VECTOR_MASK;
for ( Iterator<CommsConnType> iter = set.iterator(); iter.hasNext(); ) {
CommsConnType typ = iter.next();
// DbgUtils.logf( "connTypeSetToInt: adding %s", typ.toString() );
result |= 1 << (typ.ordinal() - 1);
}
return result;