Removed logging of parsed differences

This commit is contained in:
tcely 2021-05-02 20:35:06 -04:00
parent 53ce38f5cd
commit 8637fceab0
No known key found for this signature in database
GPG Key ID: E361829E1B3040DB
1 changed files with 0 additions and 8 deletions

View File

@ -613,14 +613,6 @@ public class MainActivity extends BaseLanguageActivity implements FragmentManage
if (url == null) return;
// Log.d(TAG, url);
final IntentModel intentModel = IntentUtils.parseUrl(url);
// Temporarily log URLs that parse in a new way, then use the old parser result
final IntentModel intentModelOld = IntentUtils.parseUrlOld(url);
if (intentModelOld != null && (intentModel == null || (intentModelOld.getType() != intentModel.getType()) || (intentModelOld.getText() != intentModel.getText()))) {
Log.w(TAG, url);
intentModel = intentModelOld;
}
if (intentModel == null) return;
showView(intentModel);
}