소스 검색

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