Remove assert in ScriptCache

This commit is contained in:
Ryan Huffman 2015-08-27 12:58:57 -07:00
parent 33d6f561eb
commit 12d3cf557a

View file

@ -27,8 +27,6 @@ ScriptCache::ScriptCache(QObject* parent) {
}
QString ScriptCache::getScript(const QUrl& url, ScriptUser* scriptUser, bool& isPending, bool reload) {
//assert(!_scriptCache.contains(url) || !reload);
QString scriptContents;
if (_scriptCache.contains(url) && !reload) {
qCDebug(scriptengine) << "Found script in cache:" << url.toString();