summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorC. Sean Young <csyoung@google.com>2015-06-15 15:48:07 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-15 15:48:07 +0000
commitc79f9bba0a73c75478892dd573c0af853ec9ed20 (patch)
treeb552c15dbe3f0d8101867789317c0478b5b431e6
parent161ce0bd1c2e782b501e253481d3d69af11f5cf1 (diff)
parent9647be429b6b4564dc7b38aca526791a72a1866d (diff)
downloadandroid_external_doclava-c79f9bba0a73c75478892dd573c0af853ec9ed20.tar.gz
android_external_doclava-c79f9bba0a73c75478892dd573c0af853ec9ed20.tar.bz2
android_external_doclava-c79f9bba0a73c75478892dd573c0af853ec9ed20.zip
am 9647be42: am 0ec3764e: Fix a bug where \' (apostrophe/single quote) was being escaped with &pos instead of the correct &apos.
* commit '9647be429b6b4564dc7b38aca526791a72a1866d': Fix a bug where ' (apostrophe/single quote) was being escaped with &pos instead of the correct &apos.
-rw-r--r--src/com/google/doclava/Stubs.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/google/doclava/Stubs.java b/src/com/google/doclava/Stubs.java
index 5ae1dd0..fa82802 100644
--- a/src/com/google/doclava/Stubs.java
+++ b/src/com/google/doclava/Stubs.java
@@ -1104,7 +1104,7 @@ public class Stubs {
returnString = returnString.replaceAll("<", "&lt;");
returnString = returnString.replaceAll(">", "&gt;");
returnString = returnString.replaceAll("\"", "&quot;");
- returnString = returnString.replaceAll("'", "&pos;");
+ returnString = returnString.replaceAll("'", "&apos;");
return returnString;
}