Skip to content

Commit

Permalink
DLS-3692 stop breaking scalastyle by removing trailing commas (SIP-27…
Browse files Browse the repository at this point in the history
…). The compiler appears to be accepting trailing commas but scalastyle not
  • Loading branch information
lutnos committed Feb 25, 2021
1 parent 2bca0a2 commit 13dab02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class AuthConnector @Inject()(http: HttpClient, appConfig: AppConfig) extends Lo
val session = Session(Map(
SessionKeys.sessionId -> SessionId(s"session-${UUID.randomUUID}").value,
SessionKeys.authToken -> token,
SessionKeys.lastRequestTimestamp -> DateTime.now.getMillis.toString,
SessionKeys.lastRequestTimestamp -> DateTime.now.getMillis.toString
))

Right(SessionToken(session))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class VerifiedEmailsController @Inject() (
mcc: MessagesControllerComponents,
errorHandler: ErrorHandler,
specify_emails_to_delete: specify_emails_to_delete,
emails_deleted : emails_deleted,
emails_deleted : emails_deleted
)(
implicit val appConfig: AppConfig, ec: ExecutionContext
) extends AdminFrontendController(appConfig, mcc, errorHandler) with I18nSupport {
Expand Down

0 comments on commit 13dab02

Please sign in to comment.