diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-11 15:58:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-14 10:59:48 +0200 |
commit | ac5954d7c540f34702033d7d951d1d16cb96730a (patch) | |
tree | 310ba9698a10c74662de0714db683f932de32b0c /swext/mediawiki | |
parent | 89c0a2b2f65beeb6f42d3334662100a13169a8d6 (diff) |
java: remove commented out code
Change-Id: I05c907a38b562231e968c17f14e09ef80e0a6ed1
Diffstat (limited to 'swext/mediawiki')
-rw-r--r-- | swext/mediawiki/src/com/sun/star/wiki/Settings.java | 1 | ||||
-rw-r--r-- | swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/swext/mediawiki/src/com/sun/star/wiki/Settings.java b/swext/mediawiki/src/com/sun/star/wiki/Settings.java index b7e4e2537a44..3d87446e93e5 100644 --- a/swext/mediawiki/src/com/sun/star/wiki/Settings.java +++ b/swext/mediawiki/src/com/sun/star/wiki/Settings.java @@ -57,7 +57,6 @@ public class Settings { if ( m_instance == null ) m_instance = new Settings( ctx ); - // m_instance.loadSettings(); return m_instance; } diff --git a/swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java b/swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java index 0b150125d9d8..d293cb278621 100644 --- a/swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java +++ b/swext/mediawiki/src/com/sun/star/wiki/WikiArticle.java @@ -97,8 +97,6 @@ public class WikiArticle // in case of loading the html contents are used // in case of saving the contents should be checked whether they are empty InitArticleHTML(); - - // getArticleWiki(); } public String GetMainURL() @@ -207,8 +205,6 @@ public class WikiArticle PostMethod aPost = new PostMethod(); aPost.setPath( aURI.getEscapedPathQuery() ); - // aPost.addParameter( "title", m_sTitle ); - // aPost.addParameter( "action", "submit" ); aPost.addParameter( "wpTextbox1", sWikiCode ); aPost.addParameter( "wpSummary", sWikiComment ); aPost.addParameter( "wpSection", "" ); |