mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-02 11:35:57 +01:00
fix/suppress compiler warnings
This commit is contained in:
@@ -59,6 +59,7 @@ import java.util.Map;
|
||||
*
|
||||
* @author Sebastian Sdorra
|
||||
*/
|
||||
@SuppressWarnings("deprecation")
|
||||
public class SvnBlameHandler implements ISVNAnnotateHandler
|
||||
{
|
||||
|
||||
@@ -230,7 +231,7 @@ public class SvnBlameHandler implements ISVNAnnotateHandler
|
||||
private final List<BlameLine> blameLines;
|
||||
|
||||
/** Field description */
|
||||
private final Map<Long, String> descriptionCache = new HashMap<Long, String>();
|
||||
private final Map<Long, String> descriptionCache = new HashMap<>();
|
||||
|
||||
/** Field description */
|
||||
private final String path;
|
||||
|
||||
@@ -270,6 +270,7 @@ public class SvnLogCommand extends AbstractSvnCommand implements LogCommand
|
||||
*
|
||||
* @throws SVNException
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
private ChangesetPagingResult getChangesets(SVNRepository repo,
|
||||
long startRevision, long endRevision, int start, int limit, String[] path)
|
||||
throws SVNException
|
||||
|
||||
Reference in New Issue
Block a user