Browse Source

Remove unnecessary code from unjournaled state loader.

tags/non-daw-v1.1.0
Jonathan Moore Liles 16 years ago
parent
commit
f5c81d53be
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      Timeline/Loggable.C

+ 1
- 7
Timeline/Loggable.C View File

@@ -152,13 +152,7 @@ Loggable::load_unjournaled_state ( void )
char buf[BUFSIZ];

while ( fscanf( fp, "%X set %[^\n]\n", &id, buf ) == 2 )
{
Log_Entry *e = new Log_Entry( buf );

_loggables_unjournaled[ id ] = e;

Loggable *l = Loggable::find( id );
}
_loggables_unjournaled[ id ] = new Log_Entry( buf );

fclose( fp );



Loading…
Cancel
Save