rfe #1041590, allow header specification directly in checkstyle config file

This commit is contained in:
Lars Kühne 2004-10-16 17:27:20 +00:00
parent d1a2974764
commit d8fcf45143
1 changed files with 2 additions and 1 deletions

View File

@ -158,7 +158,8 @@ public class RegexpHeaderCheck extends AbstractHeaderCheck
}
catch (RESyntaxException ex) {
throw new ConversionException(
"line " + i + " in header specification is not a regular expression");
"line " + i + " in header specification"
+ " is not a regular expression");
}
}
}