mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
style: enable MultipleVariableDeclarations in checkstyle (#5175)
Co-authored-by: vaibhav <vaibhav.waghmare@techprescient.com>
This commit is contained in:
@@ -31,7 +31,8 @@ public class SRTFScheduling {
|
||||
}
|
||||
|
||||
public void evaluateScheduling() {
|
||||
int time = 0, cr = 0; // cr=current running process, time= units of time
|
||||
int time = 0;
|
||||
int cr = 0; // cr=current running process, time= units of time
|
||||
int n = processes.size();
|
||||
int[] remainingTime = new int[n];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user