Changed little endian method name

This commit is contained in:
nathan 2014-12-18 20:29:22 +01:00
parent 97a8207dd7
commit 760751c39b

View File

@ -215,7 +215,7 @@ public class Crypto {
hasAction = true;
// we have an ACTION describing how it was compressed, etc
int fileAction = LittleEndian.Int_.fromBytes(new byte[] {extraData[5], extraData[6], extraData[7], extraData[8]});
int fileAction = LittleEndian.Int_.from(new byte[] {extraData[5], extraData[6], extraData[7], extraData[8]});
if ((fileAction & action) != action) {
okToHash = true;