mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 09:25:43 +01:00
suppress unchecked warnings
This commit is contained in:
@@ -189,6 +189,7 @@ public class SvnBlameHandler implements ISVNAnnotateHandler
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
private String getDescription(long revision)
|
||||
{
|
||||
String description = descriptionCache.get(revision);
|
||||
|
||||
@@ -77,6 +77,7 @@ public abstract class AbstractSvnHookChangesetProvider
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public synchronized HookChangesetResponse handleRequest(
|
||||
HookChangesetRequest request)
|
||||
{
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -105,6 +105,7 @@ public class SvnPostReceiveHookChangesetProvier
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
protected Changeset fetchChangeset()
|
||||
{
|
||||
Changeset changeset = null;
|
||||
|
||||
Reference in New Issue
Block a user