ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/jtreg/util/PriorityQueue/RemoveContains.java
(Generate patch)

Comparing jsr166/src/test/jtreg/util/PriorityQueue/RemoveContains.java (file contents):
Revision 1.2 by jsr166, Sun Sep 5 21:32:20 2010 UTC vs.
Revision 1.3 by jsr166, Tue Sep 15 06:42:28 2015 UTC

# Line 1 | Line 1
1   /*
2 < * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
2 > * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4   *
5   * This code is free software; you can redistribute it and/or modify it
# Line 64 | Line 64 | public class RemoveContains {
64              public int compare(String x, String y) {
65                  return x.charAt(0) - y.charAt(0); }};
66  
67 +        test(new PriorityQueue<String>(firstChar));
68          test(new PriorityQueue<String>(10, firstChar));
69          test(new PriorityBlockingQueue<String>(10, firstChar));
70          test(new ArrayBlockingQueue<String>(10));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines