ER-068 Avoid starting, stopping, or managing threads in any way

Severity1
Enabledyes
Waivable
Rationale
Violation
![CDATA[public void businessMethod1() {
	Thread myThread = new Thread(){
		public void run() {
			while (true) {
				businessMethod2();
			}
		}
	};
	myThread.start();
}]]
Fix

Resources


Hammurapi 3 Copyright © 2004 Hammurapi Group. All Rights Reserved.