Some code formatting.

This commit is contained in:
MobiusDev
2016-03-19 08:47:52 +00:00
parent 9a9a5dd414
commit 345b88ad95
106 changed files with 308 additions and 308 deletions

View File

@@ -66,7 +66,7 @@ public class LoginCrypt
* @return true when checksum could be verified, false otherwise
* @throws IOException the size is not multiple of blowfishs block size or the raw array can't hold size bytes starting at offset due to it's size
*/
public boolean decrypt(byte[] raw, final int offset, final int size) throws IOException
public boolean decrypt(byte[] raw, int offset, int size) throws IOException
{
if ((size % 8) != 0)
{
@@ -90,7 +90,7 @@ public class LoginCrypt
* @return the new array size
* @throws IOException packet is too long to make padding and add verification data
*/
public int encrypt(byte[] raw, final int offset, int size) throws IOException
public int encrypt(byte[] raw, int offset, int size) throws IOException
{
// reserve checksum
size += 4;