Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeSession.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeSession.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeSession.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeSession.java
index df383c2cf7a..3990c817766 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeSession.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeSession.java
@@ -78,7 +78,6 @@ public class OseeSession extends OseeClientInfo {
/**
* Set the last interaction name
*
- * @param lastInteractionName
*/
public void setLastInteraction(String lastInteractionName) {
this.backingData.put(LAST_INTERACTION, lastInteractionName);
@@ -87,7 +86,6 @@ public class OseeSession extends OseeClientInfo {
/**
* Set the last interaction date
*
- * @param timestamp
*/
public void setLastInteractionDate(Timestamp timestamp) {
this.backingData.put(LAST_INTERACTION_DATE, timestamp.getTime());

Back to the top