Created
June 5, 2014 15:13
-
-
Save shvyrev/299e22af31b0246f8255 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
commented
Jul 18, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment