@@ -48,7 +48,7 @@ private enum ParseState {
48
48
}
49
49
50
50
private History history ;
51
- private CVSRepository cvsrepo = new CVSRepository ();
51
+ private CVSRepository cvsRepository = new CVSRepository ();
52
52
53
53
/**
54
54
* Process the output from the log command and insert the HistoryEntries
@@ -132,7 +132,7 @@ private void parseDateAuthor(HistoryEntry entry, String s) throws IOException {
132
132
if ("date" .equals (key )) {
133
133
try {
134
134
val = val .replace ('/' , '-' );
135
- entry .setDate (cvsrepo .parse (val ));
135
+ entry .setDate (cvsRepository .parse (val ));
136
136
} catch (ParseException pe ) {
137
137
//
138
138
// Overriding processStream() thus need to comply with the
@@ -181,13 +181,13 @@ static void sortHistoryEntries(History history) {
181
181
* Parse the history for the specified file.
182
182
*
183
183
* @param file the file to parse history for
184
- * @param repos Pointer to the SubversionRepository
184
+ * @param repository Pointer to the SubversionRepository
185
185
* @return object representing the file's history
186
186
*/
187
- History parse (File file , Repository repos ) throws HistoryException {
188
- cvsrepo = (CVSRepository ) repos ;
187
+ History parse (File file , Repository repository ) throws HistoryException {
188
+ cvsRepository = (CVSRepository ) repository ;
189
189
try {
190
- Executor executor = cvsrepo .getHistoryLogExecutor (file );
190
+ Executor executor = cvsRepository .getHistoryLogExecutor (file );
191
191
int status = executor .exec (true , this );
192
192
193
193
if (status != 0 ) {
@@ -202,7 +202,7 @@ History parse(File file, Repository repos) throws HistoryException {
202
202
// In case there is a branch, the log entries can be returned in
203
203
// unsorted order (as a result of using '-r1.1:branch' for 'cvs log')
204
204
// so they need to be sorted according to revision.
205
- if (cvsrepo .getBranch () != null && !cvsrepo .getBranch ().isEmpty ()) {
205
+ if (cvsRepository .getBranch () != null && !cvsRepository .getBranch ().isEmpty ()) {
206
206
sortHistoryEntries (history );
207
207
}
208
208
0 commit comments