Skip to content

Commit

Permalink
Cleaning white space
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickstuedi committed Dec 6, 2018
1 parent 0ed900f commit 805feed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crail/src/main/java/com/yahoo/ycsb/db/CrailClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class CrailClient extends DB {
private long startTime;
private long endTime;
private String usertable;

@Override
public void init() throws DBException {
super.init();
Expand All @@ -60,10 +60,10 @@ public void init() throws DBException {
this.startTime = System.nanoTime();
System.out.println("YCSB/Crail client initialized");
} catch(Exception e){
throw new DBException(e);
throw new DBException(e);
}
}

@Override
public void cleanup() throws DBException {
try {
Expand Down Expand Up @@ -104,7 +104,7 @@ public Status read(String table, String key, Set<String> fields, Map<String, Byt
return Status.ERROR;
}
}

@Override
public Status scan(String table, String startKey, int recordCount, Set<String> fields,
Vector<HashMap<String, ByteIterator>> result) {
Expand All @@ -114,7 +114,7 @@ public Status scan(String table, String startKey, int recordCount, Set<String> f
@Override
public Status update(String table, String key, Map<String, ByteIterator> values) {
return insert(table, key, values);
}
}

@Override
public Status insert(String table, String key, Map<String, ByteIterator> values) {
Expand Down

0 comments on commit 805feed

Please sign in to comment.