浏览代码

changed getActTime in minuts to the object actTime

Janco Kock 10 年之前
父节点
当前提交
af9c3629e5
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/agenda/Act.java

+ 3 - 3
src/agenda/Act.java

@@ -54,10 +54,10 @@ public class Act {
 
     /**
      * * return the act time.
-     * @return the act time in minutes
+     * @return the act time object
      */
-    public long getActTime() {
-        return this.actTime.getLength();
+    public ActTime getActTime() {
+        return this.actTime;
     }
     
     @Override