[Red5commits] [509] jbauch
luke@codegent.com
luke at codegent.com
Sun Mar 12 12:20:05 EST 2006
SharedObject? implements IPersistable
Timestamp: 03/13/06 01:59:28 (1 hour ago)
Change: 509
Author: jbauch
Files (see diff or trac for details):
java/server/branches/red5_refactor/src/org/red5/server/api/impl/SharedObject.java
Trac: http://mirror1.cvsdude.com/trac/osflash/red5/changeset/509
Index: /java/server/branches/red5_refactor/src/org/red5/server/api/impl/SharedObject.java
===================================================================
--- /java/server/branches/red5_refactor/src/org/red5/server/api/impl/SharedObject.java (revision 508)
+++ /java/server/branches/red5_refactor/src/org/red5/server/api/impl/SharedObject.java (revision 509)
@@ -29,5 +29,5 @@
import org.red5.server.persistence.IPersistentStorage;
-public class SharedObject implements ISharedObject, Constants {
+public class SharedObject implements ISharedObject, IPersistable, Constants {
protected static Log log =
@@ -142,5 +142,5 @@
if (this.modified && this.storage != null) {
try {
- this.storage.storeObject((IPersistable)this);
+ this.storage.storeObject(this);
} catch (IOException e) {
log.error("Could not store shared object.", e);
More information about the Red5commits
mailing list