(no commit message)
[utils] / mythtv / monitor / src / main / java / org / wamblee / mythtv / RecordingDatabase.java
index cf7bc5f502b052954d2096c0b42cac69f4fe3696..cbcf89d20caf4924fb176e2519d56c2ad1d5739f 100644 (file)
@@ -71,8 +71,6 @@ public class RecordingDatabase extends JpaDaoSupport {
     }
     
     public void update(Recording aRecording) { 
-        // Update is not required since the whole task of updating the 
-        // directory structure occurs within a single transaction. 
-        // Therefore, modifications to recordings are automatically persisted. 
+        getJpaTemplate().getEntityManager().merge(aRecording);
     }
 }