Updated Branches: refs/heads/javelin 6d155416c -> 8d016d035
MockConfigurationDaoImpl: Fix build issue, add base class method Signed-off-by: Rohit Yadav <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/8d016d03 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/8d016d03 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/8d016d03 Branch: refs/heads/javelin Commit: 8d016d035b3a48c8b65194d28b636fc90f658ac3 Parents: cafe881 Author: Rohit Yadav <[email protected]> Authored: Thu Jan 17 16:15:15 2013 -0800 Committer: Rohit Yadav <[email protected]> Committed: Thu Jan 17 16:15:15 2013 -0800 ---------------------------------------------------------------------- .../cloud/vpc/dao/MockConfigurationDaoImpl.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/8d016d03/server/test/com/cloud/vpc/dao/MockConfigurationDaoImpl.java ---------------------------------------------------------------------- diff --git a/server/test/com/cloud/vpc/dao/MockConfigurationDaoImpl.java b/server/test/com/cloud/vpc/dao/MockConfigurationDaoImpl.java index 87a748f..4322c32 100644 --- a/server/test/com/cloud/vpc/dao/MockConfigurationDaoImpl.java +++ b/server/test/com/cloud/vpc/dao/MockConfigurationDaoImpl.java @@ -107,4 +107,8 @@ public class MockConfigurationDaoImpl extends GenericDaoBase<ConfigurationVO, S return false; } + @Override + public void invalidateCache() { + } + }
