Remove redundant RegExp constructor

This commit is contained in:
Calvin Montgomery 2014-07-13 22:14:37 -07:00
parent b1709758fd
commit 35c6a68e5e

View file

@ -842,7 +842,7 @@ var Getters = {
}
/* Hack for only reading relevant video data */
if (line.match(new RegExp(startReadingSentinel))) {
if (line.match(startReadingSentinel)) {
startReading = true;
}