Skip to content

Commit

Permalink
snip old comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayan Samanta committed Mar 25, 2020
1 parent 9354d7e commit c6fe983
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions dynamodb/db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import (
"github.com/aws/aws-sdk-go/service/dynamodb"
)

// _createTable is a method used for testing. For production workloads dynamodb tables
// should be managed by the end user
func createTable(db *bucketDB) error {
input := &dynamodb.CreateTableInput{
TableName: aws.String(db.tableName),
Expand All @@ -22,7 +20,6 @@ func createTable(db *bucketDB) error {
})
}

// _deleteTable is a method used for testing
func deleteTable(db *bucketDB) error {
if _, err := db.ddb.DeleteTable(&dynamodb.DeleteTableInput{
TableName: aws.String(db.tableName),
Expand Down

0 comments on commit c6fe983

Please sign in to comment.