Remove change that doesn't belong in this branch.

This commit is contained in:
Howard Stearns 2015-05-11 10:17:31 -07:00
parent cdef09c9dd
commit 57f0d9435d

View file

@ -142,7 +142,7 @@ QString EntityTreeRenderer::loadScriptContents(const QString& scriptMaybeURLorTe
QUrl url(scriptMaybeURLorText);
// If the url is not valid, this must be script text...
if (!url.isValid() || scriptMaybeURLorText.startsWith("(")) {
if (!url.isValid()) {
isURL = false;
return scriptMaybeURLorText;
}