272273274275276277278279280
* the line */ private void checkRCSFile(String line) { Matcher matcher = RegexLibrary.RCS_FILE.matcher(line); if (matcher.matches()) { fCurrentLogEntry = new LogEntry(); fCurrentLogEntry.setRcsFile(matcher.group(1)); } }