@@ -8,7 +8,6 @@ import gitbucket.core.controller.ControllerBase
8
8
import gitbucket .core .service .AccountService
9
9
import gitbucket .core .service .RepositoryService .RepositoryInfo
10
10
import gitbucket .core .util ._
11
- import gitbucket .core .util .SyntaxSugars ._
12
11
import gitbucket .core .util .Implicits ._
13
12
import gitbucket .core .view .helpers ._
14
13
@@ -194,9 +193,7 @@ trait GistControllerBase extends ControllerBase {
194
193
JGitUtil .getCommitLog(git, " master" ) match {
195
194
case Right ((revisions, hasNext)) => {
196
195
val commits = revisions.map { revision =>
197
- defining(JGitUtil .getRevCommitFromId(git, git.getRepository.resolve(revision.id))){ revCommit =>
198
- (revision, JGitUtil .getDiffs(git, None , revision.id, true , false ))
199
- }
196
+ (revision, JGitUtil .getDiffs(git, None , revision.id, true , false ))
200
197
}
201
198
202
199
val gist = getGist(userName, repoName).get
@@ -228,9 +225,8 @@ trait GistControllerBase extends ControllerBase {
228
225
229
226
if (gist.mode == " PUBLIC" || context.loginAccount.exists(x => x.isAdmin || x.userName == userName)){
230
227
JGitUtil .getFileList(git, revision, " ." ).find(_.name == fileName).map { file =>
231
- defining(JGitUtil .getContentFromId(git, file.id, false ).get){ bytes =>
232
- RawData (FileUtil .getMimeType(file.name, bytes), bytes)
233
- }
228
+ val bytes = JGitUtil .getContentFromId(git, file.id, false ).get
229
+ RawData (FileUtil .getMimeType(file.name, bytes), bytes)
234
230
} getOrElse NotFound ()
235
231
} else Unauthorized ()
236
232
}
0 commit comments