Skip to content

Instantly share code, notes, and snippets.

@shvyrev
Created June 5, 2014 15:13
Show Gist options
  • Save shvyrev/299e22af31b0246f8255 to your computer and use it in GitHub Desktop.
Save shvyrev/299e22af31b0246f8255 to your computer and use it in GitHub Desktop.
private function insert(item:WebinarRecordLogItem):void {
fixtime(item);
while (_last && item.time > _last.time) {
_last && _mergedpush(_last);
next();
fixtime(item);
}
debug && log.info("\t" + item.time + " --> " + item.line);
_merged.push(item);
}
@donotfeedaslender
Copy link

 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment