Anomaly identified by the detector. Please review whether this anomaly corresponds to a misuse.
Finding:
13
In File:
sos/gui/HexField.java
In Method:
setValue(byte[])
Code with Finding:
class HexField {
/**
* Sets the value of this hex field to <code>value</code>.
*
* @param value the new value.
*/
public void setValue(byte[] value) {
String result = "";
for (int i=0; i < value.length; i++) {
result += Hex.byteToHexString(value[i]);
}
textfield.setText(result);
}
}