X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/NumberLiteral.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/NumberLiteral.java index 1295638..57bab53 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/NumberLiteral.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/NumberLiteral.java @@ -7,7 +7,9 @@ package net.sourceforge.phpdt.internal.compiler.ast; public class NumberLiteral extends Literal { public char[] source; - public NumberLiteral(char[] token, int sourceStart, int sourceEnd) { + public NumberLiteral(final char[] token, + final int sourceStart, + final int sourceEnd) { super(sourceStart, sourceEnd); source = token; }