Commit c900ebdc615d96395c473e81a2bfe1d5e2fcfd2c

Authored by Jordan Cheney
1 parent 944d4d0d

removed out of scope change

Showing 1 changed file with 0 additions and 4 deletions
openbr/openbr_plugin.cpp
@@ -1728,10 +1728,6 @@ Classifier *Classifier::make(QString str, QObject *parent) @@ -1728,10 +1728,6 @@ Classifier *Classifier::make(QString str, QObject *parent)
1728 if (Globals->abbreviations.contains(str)) 1728 if (Globals->abbreviations.contains(str))
1729 return make(Globals->abbreviations[str], parent); 1729 return make(Globals->abbreviations[str], parent);
1730 1730
1731 - // Check for use of '<...>' as shorthand for LoadStore(...)  
1732 - if (str.startsWith('<') && str.endsWith('>'))  
1733 - return make("LoadStore(" + str.mid(1, str.size()-2) + ")", parent);  
1734 -  
1735 File f = "." + str; 1731 File f = "." + str;
1736 Classifier *classifier = Factory<Classifier>::make(f); 1732 Classifier *classifier = Factory<Classifier>::make(f);
1737 1733