aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/utils/TextUtils.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2015-02-10 11:47:25 +0100
committerSamuel Tardieu <sam@rfc1149.net>2015-02-10 11:49:09 +0100
commitfa6741ea0b36317d0c141e765d53ee37de72fa1d (patch)
tree2eed082066cd6e35095d9f108296194f939ff1e4 /main/src/cgeo/geocaching/utils/TextUtils.java
parent7c7ca769d65f5539c44de22948c2f5fb74efdf0c (diff)
downloadcgeo-fa6741ea0b36317d0c141e765d53ee37de72fa1d.zip
cgeo-fa6741ea0b36317d0c141e765d53ee37de72fa1d.tar.gz
cgeo-fa6741ea0b36317d0c141e765d53ee37de72fa1d.tar.bz2
Remove empty JavaDoc @param and @return
Diffstat (limited to 'main/src/cgeo/geocaching/utils/TextUtils.java')
-rw-r--r--main/src/cgeo/geocaching/utils/TextUtils.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/main/src/cgeo/geocaching/utils/TextUtils.java b/main/src/cgeo/geocaching/utils/TextUtils.java
index 9fc960c..1f14f8d 100644
--- a/main/src/cgeo/geocaching/utils/TextUtils.java
+++ b/main/src/cgeo/geocaching/utils/TextUtils.java
@@ -106,8 +106,6 @@ public final class TextUtils {
/**
* Searches for the pattern pattern in the data.
*
- * @param data
- * @param pattern
* @return true if data contains the pattern pattern
*/
public static boolean matches(final String data, final Pattern pattern) {
@@ -164,8 +162,6 @@ public final class TextUtils {
* Remove all control characters (which are not valid in XML or HTML), as those should not appear in cache texts
* anyway
*
- * @param input
- * @return
*/
public static String removeControlCharacters(final String input) {
final Matcher remover = PATTERN_REMOVE_NONPRINTABLE.matcher(input);