blob: 0c0248c19e19b66bcb34b120cd10ed6f7ebcf041 [file] [log] [blame]
package p;
import java.util.*;
class A {
private final List _binPaths = Collections.synchronizedList(new ArrayList());
List get() {
return new ArrayList(_binPaths);
}
}