From e1d5fee8445d67e0b33c7ff8b68dda369b3eb8c3 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Fri, 27 Oct 2017 12:08:59 +0000 Subject: [PATCH] Fixed errors on javadoc git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/vre-management/smart-executor-client@157669 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../gcube/vremanagement/executor/client/util/Tuple.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/gcube/vremanagement/executor/client/util/Tuple.java b/src/main/java/org/gcube/vremanagement/executor/client/util/Tuple.java index 71f822d..754a46e 100644 --- a/src/main/java/org/gcube/vremanagement/executor/client/util/Tuple.java +++ b/src/main/java/org/gcube/vremanagement/executor/client/util/Tuple.java @@ -20,28 +20,28 @@ public class Tuple { } /** - * @return the a + * @return the name */ public Name getName() { return name; } /** - * @param a the a to set + * @param name the name to set */ public void setName(Name name) { this.name = name; } /** - * @return the b + * @return the value */ public Value getValue() { return value; } /** - * @param b the b to set + * @param value the value to set */ public void setValue(Value value) { this.value = value;