aboutsummaryrefslogtreecommitdiff
path: root/bigtop-test-framework
diff options
context:
space:
mode:
authorrvs <rvs@13f79535-47bb-0310-9956-ffa450edef68>2012-10-17 17:10:28 +0000
committerRoman Shaposhnik <rvs@cloudera.com>2012-11-02 08:39:23 -0700
commit1f584225b242a0cee139a3554fc4f4d69886a429 (patch)
tree0ee3b93d27c67245a6eda308760913d5eab64c99 /bigtop-test-framework
parent1b3d2a14b9d6b85632c1a416a85f56448f112f33 (diff)
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
Diffstat (limited to 'bigtop-test-framework')
-rw-r--r--bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageInstance.groovy2
-rw-r--r--bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/pmanager/PackageManager.groovy2
2 files changed, 0 insertions, 4 deletions
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 8769a61f..1cfc7d9d 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();
/**
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 dcbaa825..468990de 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)