diff options
author | Tobias Thierer <tobiast@google.com> | 2017-03-02 19:28:56 +0000 |
---|---|---|
committer | Tobias Thierer <tobiast@google.com> | 2017-03-06 11:21:55 +0000 |
commit | 5d175dd4d7b128492ef7e3da6a77d80b8fd0aa22 (patch) | |
tree | 4d5aff2e7df775316aaae64bc5de73cf06ce77ab /support | |
parent | 6975f84c2ed72e1e26d20190b6f318718c849008 (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 'support')
-rw-r--r-- | support/src/test/java/org/apache/harmony/security/tests/support/cert/MyCertStoreParameters.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/src/test/java/org/apache/harmony/security/tests/support/cert/MyCertStoreParameters.java b/support/src/test/java/org/apache/harmony/security/tests/support/cert/MyCertStoreParameters.java index fe5c408bfa..8feb45ba53 100644 --- a/support/src/test/java/org/apache/harmony/security/tests/support/cert/MyCertStoreParameters.java +++ b/support/src/test/java/org/apache/harmony/security/tests/support/cert/MyCertStoreParameters.java @@ -37,7 +37,7 @@ public class MyCertStoreParameters implements CertStoreParameters { try { return super.clone(); } catch (CloneNotSupportedException e) { - throw new AssertionError(e); // android-changed + throw new AssertionError(e); // Android-changed } } } |