mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-27 07:58:49 +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 ) {
|
||||
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;
|
||||
|
|
Loading…
Add table
Reference in a new issue