X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/StringLiteral.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/StringLiteral.java index ca22a4c..436c102 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/StringLiteral.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/StringLiteral.java @@ -103,13 +103,13 @@ public class StringLiteral extends Literal { * @deprecated - use field instead */ public int sourceEnd() { - return sourceEnd; + return getSourceEnd(); } /** * @deprecated - use field instead */ public int sourceStart() { - return sourceStart; + return getSourceStart(); } }