Fix expel.

Fix regex.
This commit is contained in:
Steven Lawson
2012-12-01 14:11:10 -05:00
parent f5891ae23b
commit abf78c49bb
2 changed files with 8 additions and 10 deletions

View File

@ -930,8 +930,8 @@ public class TFM_Util
{
boolean is_match = true;
String[] a_parts = StringUtils.split(a, '.');
String[] b_parts = StringUtils.split(b, '.');
String[] a_parts = a.split("\\.");
String[] b_parts = b.split("\\.");
if (a_parts.length != 4 || b_parts.length != 4)
{