diff --git a/openbr/openbr_plugin.cpp b/openbr/openbr_plugin.cpp index a33ace9..f7b9c78 100644 --- a/openbr/openbr_plugin.cpp +++ b/openbr/openbr_plugin.cpp @@ -1728,10 +1728,6 @@ Classifier *Classifier::make(QString str, QObject *parent) if (Globals->abbreviations.contains(str)) return make(Globals->abbreviations[str], parent); - // Check for use of '<...>' as shorthand for LoadStore(...) - if (str.startsWith('<') && str.endsWith('>')) - return make("LoadStore(" + str.mid(1, str.size()-2) + ")", parent); - File f = "." + str; Classifier *classifier = Factory::make(f);