fix some deprecated warnings

This commit is contained in:
Sebastian Sdorra
2014-01-11 14:40:59 +01:00
parent 66da3a247b
commit a4e001808d
20 changed files with 119 additions and 113 deletions

View File

@@ -226,14 +226,14 @@ public class SvnBlameHandler implements ISVNAnnotateHandler
//~--- fields ---------------------------------------------------------------
/** Field description */
private List<BlameLine> blameLines;
private final List<BlameLine> blameLines;
/** Field description */
private Map<Long, String> descriptionCache = new HashMap<Long, String>();
private final Map<Long, String> descriptionCache = new HashMap<Long, String>();
/** Field description */
private String path;
private final String path;
/** Field description */
private SVNRepository svnRepository;
private final SVNRepository svnRepository;
}