diff options
author | rbuj <robert.buj@gmail.com> | 2014-09-10 00:29:04 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-09-10 08:20:35 +0000 |
commit | 4157780bedd048a27cc33302ab5ebca5a93afa70 (patch) | |
tree | 94b54cd6e84ec75701cd60fc62ab1ab030c380a9 /swext | |
parent | bd9cd1a37488f7cf9f8af64e07ab6f29728665f4 (diff) |
mediawiki: use a character literal
Change-Id: I1dadf4f905fcf06aee616cc0cfea3d77a145a3a1
Reviewed-on: https://gerrit.libreoffice.org/11371
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'swext')
-rw-r--r-- | swext/mediawiki/src/com/sun/star/wiki/Helper.java | 2 | ||||
-rw-r--r-- | swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/swext/mediawiki/src/com/sun/star/wiki/Helper.java b/swext/mediawiki/src/com/sun/star/wiki/Helper.java index 50f1ece057e3..1eb42040139b 100644 --- a/swext/mediawiki/src/com/sun/star/wiki/Helper.java +++ b/swext/mediawiki/src/com/sun/star/wiki/Helper.java @@ -341,7 +341,7 @@ public class Helper int nURL = sWebPage.indexOf( "URL=", nContent ); if ( nURL > 0 ) { - int nEndURL = sWebPage.indexOf( "\"", nURL ); + int nEndURL = sWebPage.indexOf('"', nURL ); if ( nEndURL > 0 ) sResultURL = sWebPage.substring( nURL + 4, nEndURL ); } diff --git a/swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java b/swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java index d293cb278621..6b87778808eb 100644 --- a/swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java +++ b/swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java @@ -146,7 +146,7 @@ public class WikiArticle if ( iPosStart >= 0 && iPosEnd > 0 ) { String sArticle = sWebPage.substring(iPosStart, iPosEnd); - iPosStart = sArticle.indexOf(">") + 1; + iPosStart = sArticle.indexOf('>') + 1; sWikiCode = sArticle.substring( iPosStart, sArticle.length() ); } } |