mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-10-31 18:46:07 +01:00
rename BlamePagingResult to BlameResult
This commit is contained in:
@@ -95,7 +95,7 @@ public class SvnBlameViewer implements BlameViewer
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public BlamePagingResult getBlame(String revision, String path)
|
||||
public BlameResult getBlame(String revision, String path)
|
||||
{
|
||||
List<BlameLine> blameLines = new ArrayList<BlameLine>();
|
||||
File directory = handler.getDirectory(repository);
|
||||
@@ -130,7 +130,7 @@ public class SvnBlameViewer implements BlameViewer
|
||||
logger.error("could not create blame view", ex);
|
||||
}
|
||||
|
||||
return new BlamePagingResult(blameLines.size(), blameLines);
|
||||
return new BlameResult(blameLines.size(), blameLines);
|
||||
}
|
||||
|
||||
//~--- fields ---------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user