IDEA build 611
Redhat Linux 7.2
In the following method, after I type crcBytes, the option to create
a local variable or a field is given. No matter which one I select,
a field is always created.
public byte[] applyCRC32( byte[] bytes ) {
CRC32 crc = new CRC32();
crc.update( bytes );
byte[] resultBytes = new byte[ bytes.length + 4 ];
System.arraycopy( bytes, 0, resultBytes, 0, bytes.length );
System.arraycopy( bytes, bytes.length, crcBytes
return resultBytes;
}
-- Rick
_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list