temporarily suspend parallel processing

This commit is contained in:
Jeremy Long
2017-08-20 11:22:35 -04:00
parent e07401dc55
commit 1049a18a15

View File

@@ -157,6 +157,8 @@ public abstract class AbstractAnalyzer implements Analyzer {
*/
@Override
public boolean supportsParallelProcessing() {
return true;
//temporarily removing parallel processing from all analyzders until further examination of thread safety occurs.
//return true;
return false;
}
}