Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/themes/ThemeMapping.java @ 3875:d12f108ccc9c
The usual whitespace and import cleanups.
flys-artifacts/trunk@5508 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Tue, 18 Sep 2012 15:45:49 +0000 |
parents | 8e713e9bb4d7 |
children |
comparison
equal
deleted
inserted
replaced
3874:2c40832cb596 | 3875:d12f108ccc9c |
---|---|
86 public boolean applyPattern(String text) { | 86 public boolean applyPattern(String text) { |
87 if (patternStr == null || patternStr.length() == 0) { | 87 if (patternStr == null || patternStr.length() == 0) { |
88 return true; | 88 return true; |
89 } | 89 } |
90 Matcher m = pattern.matcher(text); | 90 Matcher m = pattern.matcher(text); |
91 | 91 |
92 if (m.matches()) { | 92 if (m.matches()) { |
93 logger.debug("Pattern matches: " + text); | 93 logger.debug("Pattern matches: " + text); |
94 return true; | 94 return true; |
95 } | 95 } |
96 else { | 96 else { |