Skip to content

Commit 2ab9c90

Browse files
committed
Adding/Removing keywords ignores LastChangedDate
This fixes #27
1 parent abc937f commit 2ab9c90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/src/main/java/org/tigris/subversion/svnclientadapter/AbstractClientAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public SVNKeywords addKeywords(File path, SVNKeywords keywords) throws SVNClient
5555
if (keywords.isLastChangedBy())
5656
currentKeywords.setLastChangedBy(true);
5757
if (keywords.isLastChangedDate())
58-
currentKeywords.setLastChangedBy(true);
58+
currentKeywords.setLastChangedDate(true);
5959
if (keywords.isLastChangedRevision())
6060
currentKeywords.setLastChangedRevision(true);
6161
setKeywords(path,currentKeywords,false);

0 commit comments

Comments
 (0)