src/main/java/com/amazonaws/services/dynamodbv2/transactions/TransactionManagerDynamoDBFacade.java [126:133]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public GetItemResult getItem(String tableName,
            Map<String, AttributeValue> key, Boolean consistentRead)
            throws AmazonServiceException, AmazonClientException {
        return getItem(new GetItemRequest()
                .withTableName(tableName)
                .withKey(key)
                .withConsistentRead(consistentRead));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/dynamodbv2/transactions/TransactionDynamoDBFacade.java [326:333]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public GetItemResult getItem(String tableName,
            Map<String, AttributeValue> key, Boolean consistentRead)
            throws AmazonServiceException, AmazonClientException {
        return getItem(new GetItemRequest()
                .withTableName(tableName)
                .withKey(key)
                .withConsistentRead(consistentRead));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



