Repository: flex-falcon Updated Branches: refs/heads/feature/maven-migration-test beaf5b63a -> 9f046f7d9
- Added some missing dummy implementations of the ICSSDocument interface Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/39b39ec0 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/39b39ec0 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/39b39ec0 Branch: refs/heads/feature/maven-migration-test Commit: 39b39ec0177225cac8995bc70d2ecef5d973f7be Parents: beaf5b6 Author: Christofer Dutz <[email protected]> Authored: Mon Apr 18 15:46:30 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Mon Apr 18 15:46:30 2016 +0200 ---------------------------------------------------------------------- .../flex/compiler/internal/caches/CSSDocumentCache.java | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/39b39ec0/compiler/src/main/java/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java ---------------------------------------------------------------------- diff --git a/compiler/src/main/java/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java b/compiler/src/main/java/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java index 4e009b3..be9e03b 100644 --- a/compiler/src/main/java/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java +++ b/compiler/src/main/java/org/apache/flex/compiler/internal/caches/CSSDocumentCache.java @@ -179,6 +179,16 @@ public class CSSDocumentCache extends ConcurrentCacheStoreBase<ICSSDocument> { return 0; } + + @Override + public int getEndLine() { + return 0; + } + + @Override + public int getEndColumn() { + return 0; + } }; private abstract static class CSSDocumentCacheKeyBase extends CacheStoreKeyBase
