SimpleNoSQL icon indicating copy to clipboard operation
SimpleNoSQL copied to clipboard

Update Readme to correct not close "<" error

Open orklar opened this issue 7 years ago • 0 comments

NoSQL.with(context).using(SampleBean.class)
    .bucketId("bucket")
    .entityId("entityId")
    .retrieve(new RetrievalCallback<SampleBean>() {
    public void retrieveResults(List<NoSQLEntity<SampleBean>> entities) {
        // Display results or something 
        SampleBean firstBean = entities.get(0).getData(); // always check length of a list first...
    }   
});
In this code the writter forgot to close the "<" and this caused errors when the code is used. Hereby the error is corrected from the readme.

orklar avatar Dec 18 '17 10:12 orklar