Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
TFJ-173 " is mapped to \\u0022
git-svn-id: http://yusuke.homeip.net/svn/twitter4j/trunk@330 117b7e0d-5933-0410-9d29-ab41bb01d86b
  • Loading branch information
yusuke committed Jun 13, 2009
1 parent 99d00db commit ab2bd9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.properties
Expand Up @@ -5,7 +5,7 @@ projectName=Twitter4J

#JUnit test suite
testclass=twitter4j.Twitter4JTestSuite
version=twitter4j-2.0.8
version=twitter4j-2.0.9

src=src/main/java
test=src/test/java
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@
<artifactId>twitter4j</artifactId>
<packaging>jar</packaging>
<name>twitter4j</name>
<version>2.0.8</version>
<version>2.0.9-SNAPSHOT</version>
<url>http://yusuke.homeip.net/twitter4j/</url>
<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/twitter4j/http/HTMLEntity.java
Expand Up @@ -326,7 +326,7 @@ public static void unescape(StringBuffer original) {
, {"&clubs;", "&#9827;"/* black club suit = shamrock */, "\u2663"}
, {"&hearts;", "&#9829;"/* black heart suit = valentine */, "\u2665"}
, {"&diams;", "&#9830;"/* black diamond suit */, "\u2666"}
, {"&quot;", "&#34;" /* quotation mark = APL quote */, "\\u0022"}
, {"&quot;", "&#34;" /* quotation mark = APL quote */, "\u0022"}
, {"&amp;", "&#38;" /* ampersand */, "\u0026"}
, {"&lt;", "&#60;" /* less-than sign */, "\u003C"}
, {"&gt;", "&#62;" /* greater-than sign */, "\u003E"}
Expand Down

0 comments on commit ab2bd9c

Please sign in to comment.