public Bytes get()

in modules/core/src/main/java/org/apache/fluo/recipes/core/transaction/RecordingTransactionBase.java [82:88]


  public Bytes get(Bytes row, Column col) {
    Bytes val = txb.get(row, col);
    if (val != null) {
      txLog.filteredAdd(LogEntry.newGet(row, col, val), filter);
    }
    return val;
  }