summaryrefslogtreecommitdiff
path: root/jsr166-tests/src/test/java/jsr166/DelayQueueTest.java
diff options
context:
space:
mode:
authorTobias Thierer <tobiast@google.com>2017-03-02 19:28:56 +0000
committerTobias Thierer <tobiast@google.com>2017-03-06 11:21:55 +0000
commit5d175dd4d7b128492ef7e3da6a77d80b8fd0aa22 (patch)
tree4d5aff2e7df775316aaae64bc5de73cf06ce77ab /jsr166-tests/src/test/java/jsr166/DelayQueueTest.java
parent6975f84c2ed72e1e26d20190b6f318718c849008 (diff)
Automated: Canonicalize spelling of Android-changed across libcore
This applies the same regexp replacement across libcore that http://r.android.com/345826 had only applied to ojluni. Most of the previous noncanonical spellings were a lowercased "android-" that should be "Android-". This CL was created by running the following command on top of the above CL. No manual changes were made. find . -name \*\.java | xargs sed -i \ -e 's/Android[- ]changed/Android-changed/ig' \ -e 's/Android-changed :/Android-changed:/g' \ -e 's/Android-changed \(BEGIN\|END\)/\1 Android-changed/g' \ -e 's/Android-changed - /Android-changed: /g' \ -e 's/Android[- ]removed/Android-removed/ig' \ -e 's/Android-removed :/Android-removed:/g' \ -e 's/Android-removed \(BEGIN\|END\)/\1 Android-removed/g' \ -e 's/Android-removed - /Android-removed: /g' \ -e 's/Android[- ]added/Android-added/ig' \ -e 's/Android-added :/Android-added:/g' \ -e 's/Android-added \(BEGIN\|END\)/\1 Android-added/g' \ -e 's/Android-added - /Android-added: /g' \ -e 's/----- \(BEGIN\|END\) android\( -----\)\?/\1 Android-changed/g' \ -e 's/\/\* \(BEGIN\|END\) Android-changed \*\//\/\/ \1 Android-changed/g' Bug: 35841464 Test: make droid cts Change-Id: I060c7236b7607763e5d27d60aa395d2507703a95
Diffstat (limited to 'jsr166-tests/src/test/java/jsr166/DelayQueueTest.java')
-rw-r--r--jsr166-tests/src/test/java/jsr166/DelayQueueTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsr166-tests/src/test/java/jsr166/DelayQueueTest.java b/jsr166-tests/src/test/java/jsr166/DelayQueueTest.java
index e42ac2dfbc..61e8f8bd04 100644
--- a/jsr166-tests/src/test/java/jsr166/DelayQueueTest.java
+++ b/jsr166-tests/src/test/java/jsr166/DelayQueueTest.java
@@ -27,7 +27,7 @@ import junit.framework.Test;
public class DelayQueueTest extends JSR166TestCase {
- // android-changed: Extend BlockingQueueTest directly instead of creating
+ // Android-changed: Extend BlockingQueueTest directly instead of creating
// an inner class and its associated suite.
//
// public static class Generic extends BlockingQueueTest {