Repository: flex-falcon Updated Branches: refs/heads/develop e9fd628e5 -> 0b5374907
CSSDocumentCache: implemented getEndLine() and getEndColumn() to fix error in jenkins that didn't show up in ant all Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/0b537490 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/0b537490 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/0b537490 Branch: refs/heads/develop Commit: 0b5374907ab7e57616fdc6218f3a707eb6494826 Parents: e9fd628 Author: Josh Tynjala <[email protected]> Authored: Mon Apr 18 09:49:41 2016 -0700 Committer: Josh Tynjala <[email protected]> Committed: Mon Apr 18 09:49:41 2016 -0700 ---------------------------------------------------------------------- .../flex/compiler/internal/caches/CSSDocumentCache.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0b537490/compiler/src/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java ---------------------------------------------------------------------- diff --git a/compiler/src/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java b/compiler/src/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java index 4e009b3..072019e 100644 --- a/compiler/src/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java +++ b/compiler/src/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java @@ -169,6 +169,18 @@ public class CSSDocumentCache extends ConcurrentCacheStoreBase<ICSSDocument> } @Override + public int getEndLine() + { + return 0; + } + + @Override + public int getEndColumn() + { + return 0; + } + + @Override public int getAbsoluteStart() { return 0;
