suppress unchecked warnings

This commit is contained in:
Sebastian Sdorra
2014-01-11 15:17:44 +01:00
parent a99dfb31fc
commit 4745dd5575
49 changed files with 76 additions and 15 deletions

View File

@@ -189,6 +189,7 @@ public class SvnBlameHandler implements ISVNAnnotateHandler
*
* @return
*/
@SuppressWarnings("unchecked")
private String getDescription(long revision)
{
String description = descriptionCache.get(revision);

View File

@@ -77,6 +77,7 @@ public abstract class AbstractSvnHookChangesetProvider
* @return
*/
@Override
@SuppressWarnings("unchecked")
public synchronized HookChangesetResponse handleRequest(
HookChangesetRequest request)
{

View File

@@ -106,6 +106,7 @@ public class SvnBrowseCommand extends AbstractSvnCommand
* @throws RepositoryException
*/
@Override
@SuppressWarnings("unchecked")
public BrowserResult getBrowserResult(BrowseCommandRequest request)
throws IOException, RepositoryException
{
@@ -172,6 +173,7 @@ public class SvnBrowseCommand extends AbstractSvnCommand
*
* @throws SVNException
*/
@SuppressWarnings("unchecked")
private void browseRecursive(SVNRepository svnRepository,
long revisionNumber, BrowseCommandRequest request,
List<FileObject> children, Collection<SVNDirEntry> entries, String basePath)

View File

@@ -102,6 +102,7 @@ public class SvnLogCommand extends AbstractSvnCommand implements LogCommand
* @throws RepositoryException
*/
@Override
@SuppressWarnings("unchecked")
public Changeset getChangeset(String revision)
throws IOException, RepositoryException
{
@@ -149,6 +150,7 @@ public class SvnLogCommand extends AbstractSvnCommand implements LogCommand
* @throws RepositoryException
*/
@Override
@SuppressWarnings("unchecked")
public ChangesetPagingResult getChangesets(LogCommandRequest request)
throws IOException, RepositoryException
{

View File

@@ -105,6 +105,7 @@ public class SvnPostReceiveHookChangesetProvier
* @return
*/
@Override
@SuppressWarnings("unchecked")
protected Changeset fetchChangeset()
{
Changeset changeset = null;