]> source.dussan.org Git - jgit.git/commit
archive: Drop unnecessary empty comments and 'final' qualifiers on locals 02/48902/1
authorJonathan Nieder <jrn@google.com>
Wed, 27 May 2015 23:25:49 +0000 (16:25 -0700)
committerJonathan Nieder <jrn@google.com>
Wed, 27 May 2015 23:49:34 +0000 (16:49 -0700)
commita5778b6f41c113b06687d47e606595ce8e2725a4
tree917da7141410ccebd9a0ce50e3b4c23b3cbabb27
parent1287cdaf338c4f1b782985597de9358de534bbef
archive: Drop unnecessary empty comments and 'final' qualifiers on locals

Early JGit code used comments to inform the Eclipse formatter about
where to break lines and used final in the hope of making code faster.
The ArchiveCommand command implementation imitated that style.

Nowadays the project relies less on the Eclipse formatter and relies
more on Java having sane performance with local variables that are not
explicitly marked 'final'.  Removing the unnecessary empty comments and
'final' qualifiers makes this code more readable and more consistent
with recent JGit code.

Change-Id: I7a181432eda7e18bd32cf110d89c0efbe490c4f1
Signed-off-by: Jonathan Nieder <jrn@google.com>
org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/ArchiveTest.java
org.eclipse.jgit/src/org/eclipse/jgit/api/ArchiveCommand.java