This commit is contained in:
Lana Steuck 2011-03-10 19:38:44 -08:00
commit d67aed550b
2 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ public class Basic {
throw new RuntimeException("entry not found");
// check filtering: f* should match foo
DirectoryStream.Filter<Path> filter = new DirectoryStream.Filter<>() {
DirectoryStream.Filter<Path> filter = new DirectoryStream.Filter<Path>() {
private PathMatcher matcher =
dir.getFileSystem().getPathMatcher("glob:f*");
public boolean accept(Path file) {

View File

@ -53,7 +53,7 @@ import java.util.concurrent.PriorityBlockingQueue;
public class NoNulls {
void test(String[] args) throws Throwable {
final Comparator<String> nullTolerantComparator
= new Comparator<>() {
= new Comparator<String>() {
public int compare(String x, String y) {
return (x == null ? -1 :
y == null ? 1 :
@ -65,7 +65,7 @@ public class NoNulls {
nullSortedSet.add(null);
final PriorityQueue<String> nullPriorityQueue
= new PriorityQueue<>() {
= new PriorityQueue<String>() {
public Object[] toArray() { return new Object[] { null };}};
final Collection<String> nullCollection = new ArrayList<>();