Bug 484686 - ArrayIndexOutOfBoundsException in ASTInstruction

Change-Id: I6260c4df1c3961e5c76563addd89a9b06ca420ff
diff --git a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java
index d494ab6..3f62171 100644
--- a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java
+++ b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java
@@ -2240,7 +2240,7 @@
 			storeInstruction();
 			storeInstruction();
 			ITypeBinding[] typeArguments = typeBinding.getTypeArguments();
-			if (typeArguments != null && typeArguments.length > 0 ){
+			if (typeArguments != null && typeArguments.length > 0) {
 				if (checkAutoBoxing(typeArguments[0], paramBinding)) {
 					storeInstruction();
 				}