From c900ebdc615d96395c473e81a2bfe1d5e2fcfd2c Mon Sep 17 00:00:00 2001 From: Jordan Cheney Date: Wed, 24 Jun 2015 12:29:20 -0400 Subject: [PATCH] removed out of scope change --- openbr/openbr_plugin.cpp | 4 ---- 1 file changed, 0 insertions(+), 4 deletions(-) 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); -- libgit2 0.21.4