Commit 42ba4f3762a4bd5697a4dc202c7483ab29480274

Authored by Scott Klum
1 parent 23c937c2

Important to use basic C++ knowledge

Showing 1 changed file with 1 additions and 2 deletions
openbr/plugins/validate.cpp
... ... @@ -257,8 +257,7 @@ class RejectDistance : public Distance
257 257 (void) b;
258 258  
259 259 foreach (const QString &key, keys)
260   - if ((rejectIfContains && a.file.contains(key)) ||
261   - (!rejectIfContains && !a.file.contains(key)))
  260 + if ((rejectIfContains && a.file.contains(key)) || (!rejectIfContains && !a.file.contains(key)))
262 261 return -std::numeric_limits<float>::max();
263 262  
264 263 return 0;
... ...