GP-0: Fixing formatting

This commit is contained in:
Ryan Kurtz 2022-06-23 01:38:28 -04:00
parent e66e5b70e9
commit fe804b387c

View File

@ -340,8 +340,8 @@ public final class OperandType {
public static boolean isCoProcessor(int operandType) {
return (operandType & COP) != 0;
}
/**
/**
* check the DYNAMIC flag.
* @param operandType the bit field to examine.
*
@ -467,9 +467,9 @@ public final class OperandType {
append(buf, "COP ");
}
if (isDynamic(operandType)) {
append(buf, "DYN ");
}
if (isDynamic(operandType)) {
append(buf, "DYN ");
}
return buf.toString();
}