BIGTOP-745. fix incorrect javadocs in test framework (Wing Yew Poon via rvs)
git-svn-id: https://svn.apache.org/repos/asf/bigtop/trunk@1399349 13f79535-47bb-0310-9956-ffa450edef68 Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/1f584225 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/1f584225 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/1f584225 Branch: refs/heads/master Commit: 1f584225b242a0cee139a3554fc4f4d69886a429 Parents: 1b3d2a1 Author: rvs <rvs@13f79535-47bb-0310-9956-ffa450edef68> Authored: Wed Oct 17 17:10:28 2012 +0000 Committer: Roman Shaposhnik <[email protected]> Committed: Fri Nov 2 08:39:23 2012 -0700 ---------------------------------------------------------------------- .../bigtop/itest/pmanager/PackageInstance.groovy | 2 -- .../bigtop/itest/pmanager/PackageManager.groovy | 2 -- 2 files changed, 0 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/1f584225/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageInstance.groovy ---------------------------------------------------------------------- diff --git a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageInstance.groovy b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageInstance.groovy index 8769a61..1cfc7d9 100644 --- a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageInstance.groovy +++ b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageInstance.groovy @@ -57,8 +57,6 @@ abstract class PackageInstance { abstract public int remove(); /** * Re-sync metadata associated with this package with the underlying package management system - * - * @return int return code of the operation: o in case of success, non-zero otherwise */ abstract public void refresh(); /** http://git-wip-us.apache.org/repos/asf/bigtop/blob/1f584225/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy ---------------------------------------------------------------------- diff --git a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy index dcbaa82..468990d 100644 --- a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy +++ b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy @@ -95,7 +95,6 @@ public abstract class PackageManager { * Search for a package in all registered repositories * * @param name name of the package (inexact matches are ok) - * @param version a particular version of the package * @return list of matching packages found in all registered repositories (can be empty) */ abstract public List<PackageInstance> search(String name) @@ -103,7 +102,6 @@ public abstract class PackageManager { * Search for a package in all registered repositories * * @param name name of the package (inexact matches are ok) - * @param version a particular version of the package * @return list of matching packages found in all registered repositories (can be empty) */ abstract public List<PackageInstance> lookup(String name)
