Fixing method call on KVMGuru to reach StorageSubSystemCommand
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b284b841 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b284b841 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b284b841 Branch: refs/heads/CLOUDSTACK-8301 Commit: b284b841929c74a8e5273f8a31a26ed9bba5d139 Parents: 74ad48d Author: wilderrodrigues <[email protected]> Authored: Wed May 6 16:55:03 2015 +0200 Committer: wilderrodrigues <[email protected]> Committed: Wed May 6 19:24:16 2015 +0200 ---------------------------------------------------------------------- .../apache/cloudstack/storage/command/StorageSubSystemCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b284b841/core/src/org/apache/cloudstack/storage/command/StorageSubSystemCommand.java ---------------------------------------------------------------------- diff --git a/core/src/org/apache/cloudstack/storage/command/StorageSubSystemCommand.java b/core/src/org/apache/cloudstack/storage/command/StorageSubSystemCommand.java index 6507bb0..f50a5fb 100644 --- a/core/src/org/apache/cloudstack/storage/command/StorageSubSystemCommand.java +++ b/core/src/org/apache/cloudstack/storage/command/StorageSubSystemCommand.java @@ -22,5 +22,5 @@ package org.apache.cloudstack.storage.command; import com.cloud.agent.api.Command; public abstract class StorageSubSystemCommand extends Command { - abstract void setExecuteInSequence(boolean inSeq); + public abstract void setExecuteInSequence(boolean inSeq); } \ No newline at end of file
