Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,10 @@ public String toString() {
"max=" + max +
'}';
}

public static void main(String[] args)
{
//Testing by Maria
System.out.println("testing allocation program");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public void run() {

@Override
public void start() {
//Testing in TEST-BRANCH-1
final String nameFormat = "Thread Group %2d-%d";
for (int i = 1; i <= count; i++) {
final Object lock1 = new Object();
Expand Down