djkevincr commented on a change in pull request #156: GORA 411 - Add exists(key) to DataStore interface URL: https://github.com/apache/gora/pull/156#discussion_r271661575
########## File path: gora-dynamodb/src/main/java/org/apache/gora/dynamodb/store/DynamoDBStore.java ########## @@ -583,4 +583,9 @@ public AmazonDynamoDB getDynamoDBClient() { public void setDynamoDBClient(AmazonDynamoDB dynamoDBClient) { this.dynamoDBClient = dynamoDBClient; } + + @Override + public boolean exists(K key) throws GoraException { + return dynamoDbStore.exists(key); Review comment: Fix indentation of 2 spaces. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services