Skip to content

Commit cdbb17e

Browse files
author
Matt Chadburn
committed
Minor fixes from PR
1 parent 9663e03 commit cdbb17e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

applications/app/controllers/ArchiveController.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ import services.S3
88
import services.DynamoDB
99
import play.api.templates.Html
1010

11-
//import play.api.libs.ws._
1211

1312
// looks for an archived file in S3 bucket
14-
1513
object S3Archive extends S3 {
1614
override lazy val bucket = "aws-frontend-archive"
1715
def getHtml(path: String) = get(path)

common/app/services/DynamoDB.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ trait DynamoDB extends Logging {
2020

2121
def destinationFor(source: String) = {
2222

23-
val url = new AttributeValue().withS(s"""http://$source""")
23+
val url = new AttributeValue().withS(s"http://$source")
2424

2525
val getItemRequest = new GetItemRequest()
2626
.withTableName(tableName)

0 commit comments

Comments
 (0)