aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/utils
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2015-02-10 12:04:50 +0100
committerSamuel Tardieu <sam@rfc1149.net>2015-02-10 12:04:50 +0100
commit87c8ffb893db33d7be6330d61a1a1acdc3bbfd71 (patch)
tree0c3b4b516c6cf91e3518ca9c5942787bfd3d228e /main/src/cgeo/geocaching/utils
parentabded1c68be4f0da84a3f28586d492c62aee6e03 (diff)
downloadcgeo-87c8ffb893db33d7be6330d61a1a1acdc3bbfd71.zip
cgeo-87c8ffb893db33d7be6330d61a1a1acdc3bbfd71.tar.gz
cgeo-87c8ffb893db33d7be6330d61a1a1acdc3bbfd71.tar.bz2
Remove missing @throws description
Diffstat (limited to 'main/src/cgeo/geocaching/utils')
-rw-r--r--main/src/cgeo/geocaching/utils/XmlUtils.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/utils/XmlUtils.java b/main/src/cgeo/geocaching/utils/XmlUtils.java
index c36fb53..004fd1b 100644
--- a/main/src/cgeo/geocaching/utils/XmlUtils.java
+++ b/main/src/cgeo/geocaching/utils/XmlUtils.java
@@ -17,7 +17,6 @@ public final class XmlUtils {
* @param prefix an XML prefix, see {@link XmlSerializer#startTag(String, String)}
* @param tag an XML tag
* @param text some text to insert, or <tt>null</tt> to omit completely this tag
- * @throws IOException
*/
public static void simpleText(final XmlSerializer serializer, final String prefix, final String tag, final String text) throws IOException {
if (text != null) {
@@ -34,7 +33,6 @@ public final class XmlUtils {
* @param prefix an XML prefix, see {@link XmlSerializer#startTag(String, String)} shared by all tags
* @param tagAndText an XML tag, the corresponding text, another XML tag, the corresponding text. <tt>null</tt> texts
* will be omitted along with their respective tag.
- * @throws IOException
*/
public static void multipleTexts(final XmlSerializer serializer, final String prefix, final String... tagAndText) throws IOException {
for (int i = 0; i < tagAndText.length; i += 2) {