make parseText method static

This commit is contained in:
Sebastian Sdorra
2012-01-07 17:34:48 +01:00
parent efb42e59f0
commit 652f2d399a

View File

@@ -68,7 +68,7 @@ public class LinkTextParser
* *
* @return * @return
*/ */
public String parseText(String content) public static String parseText(String content)
{ {
Matcher m = REGEX_URL.matcher(content); Matcher m = REGEX_URL.matcher(content);
List<Token> tokens = new ArrayList<Token>(); List<Token> tokens = new ArrayList<Token>();