瀏覽代碼

BETA: Some trivial spelling corrections.

Ahmed 12 年之前
父節點
當前提交
51e7cd264e

+ 2 - 2
L2J_Server_BETA/java/com/l2jserver/util/HexUtils.java

@@ -17,7 +17,7 @@ package com.l2jserver.util;
 import java.util.Arrays;
 
 /**
- * @author Christian
+ * @author FBIagent
  */
 public class HexUtils
 {
@@ -250,7 +250,7 @@ public class HexUtils
 			else
 			{
 				// last line which shows _HEX_ED_BPL bytes
-				textData[lineAsciiDataStart - 1] = ' '; // seperate
+				textData[lineAsciiDataStart - 1] = ' '; // separate
 			}
 		}
 		return textData;

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/util/ValueSortMap.java

@@ -158,7 +158,7 @@ public class ValueSortMap
 		
 		if (bAllDistinct)
 		{
-			// There are no multiple same values in the passed map (without consedring null)
+			// There are no multiple same values in the passed map (without considering null)
 			keySet = inMap.keySet();
 			itKeyList = keySet.iterator();
 			while (itKeyList.hasNext())

+ 4 - 4
L2J_Server_BETA/java/com/l2jserver/util/crypt/BlowfishEngine.java

@@ -1239,7 +1239,7 @@ public final class BlowfishEngine
 	{
 		if (workingKey == null)
 		{
-			throw new IllegalStateException("Blowfish not initialised");
+			throw new IllegalStateException("Blowfish not initialized");
 		}
 		if ((srcIndex + BLOCK_SIZE) > src.length)
 		{
@@ -1263,7 +1263,7 @@ public final class BlowfishEngine
 	{
 		if (workingKey == null)
 		{
-			throw new IllegalStateException("Blowfish not initialised");
+			throw new IllegalStateException("Blowfish not initialized");
 		}
 		if ((srcIndex + BLOCK_SIZE) > src.length)
 		{
@@ -1349,7 +1349,7 @@ public final class BlowfishEngine
 	{
 		if (workingKey == null)
 		{
-			throw new IllegalStateException("Blowfish not initialised");
+			throw new IllegalStateException("Blowfish not initialized");
 		}
 		if ((srcIndex + BLOCK_SIZE) > src.length)
 		{
@@ -1372,7 +1372,7 @@ public final class BlowfishEngine
 	{
 		if (workingKey == null)
 		{
-			throw new IllegalStateException("Blowfish not initialised");
+			throw new IllegalStateException("Blowfish not initialized");
 		}
 		if ((srcIndex + BLOCK_SIZE) > src.length)
 		{