Browse Source

Remove tabs

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272444 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 23 years ago
parent
commit
a3cce7d41d
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/cvslib/CVSEntry.java
  2. +3
    -3
      src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/cvslib/CVSEntry.java View File

@@ -88,7 +88,7 @@ class CVSEntry {
} }


void setAuthor(final String author) { void setAuthor(final String author) {
m_author = author;
m_author = author;
} }
String getAuthor() { String getAuthor() {


+ 3
- 3
src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java View File

@@ -302,7 +302,7 @@ public class ChangeLogTask extends Task {
final CVSEntry[] entrySet = parser.getEntrySetAsArray(); final CVSEntry[] entrySet = parser.getEntrySetAsArray();
final CVSEntry[] filteredEntrySet = filterEntrySet(entrySet); final CVSEntry[] filteredEntrySet = filterEntrySet(entrySet);


replaceAuthorIdWithName(userList,filteredEntrySet);
replaceAuthorIdWithName(userList,filteredEntrySet);


writeChangeLog(filteredEntrySet); writeChangeLog(filteredEntrySet);


@@ -392,9 +392,9 @@ public class ChangeLogTask extends Task {
* replace all known author's id's with their maven specified names * replace all known author's id's with their maven specified names
*/ */
private void replaceAuthorIdWithName(final Properties userList, private void replaceAuthorIdWithName(final Properties userList,
final CVSEntry[] entrySet) {
final CVSEntry[] entrySet) {
for (int i = 0; i < entrySet.length; i++ ) { for (int i = 0; i < entrySet.length; i++ ) {
final CVSEntry entry = entrySet[ i ]; final CVSEntry entry = entrySet[ i ];
if (userList.containsKey(entry.getAuthor())) { if (userList.containsKey(entry.getAuthor())) {
entry.setAuthor(userList.getProperty(entry.getAuthor())); entry.setAuthor(userList.getProperty(entry.getAuthor()));


Loading…
Cancel
Save