In following code IDEA build 612 reports "Parameter offset is not used.".

   private static int bytesToInt(byte b[], int offset) {
     int value = byteToUnsigned(b[offset++]);
     value |= (byteToUnsigned(b[offset++]) << 8);
     return value;
   }

Tom


_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to