mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-04 20:46:28 +01:00
remove commented-out logging
This commit is contained in:
parent
938756a34f
commit
2df8c68e60
1 changed files with 0 additions and 2 deletions
|
@ -2146,7 +2146,6 @@ public class DBUtils {
|
||||||
for ( CommsConnType value : values ) {
|
for ( CommsConnType value : values ) {
|
||||||
int ord = value.ordinal();
|
int ord = value.ordinal();
|
||||||
if ( 0 != (asInt & (1 << (ord - 1)))) {
|
if ( 0 != (asInt & (1 << (ord - 1)))) {
|
||||||
// DbgUtils.logf( "intToConnTypeSet: adding %s", value.toString() );
|
|
||||||
result.add( value );
|
result.add( value );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2162,7 +2161,6 @@ public class DBUtils {
|
||||||
int result = BIT_VECTOR_MASK;
|
int result = BIT_VECTOR_MASK;
|
||||||
for ( Iterator<CommsConnType> iter = set.iterator(); iter.hasNext(); ) {
|
for ( Iterator<CommsConnType> iter = set.iterator(); iter.hasNext(); ) {
|
||||||
CommsConnType typ = iter.next();
|
CommsConnType typ = iter.next();
|
||||||
// DbgUtils.logf( "connTypeSetToInt: adding %s", typ.toString() );
|
|
||||||
result |= 1 << (typ.ordinal() - 1);
|
result |= 1 << (typ.ordinal() - 1);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Add table
Reference in a new issue