Skip to content

Commit 3fe4549

Browse files
committed
remove comment
1 parent 8f53df1 commit 3fe4549

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

java/org/ohdsi/databaseConnector/BatchedInsert.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,6 @@ public void setInteger(int columnIndex, int[] column) {
237237

238238
public void setBoolean(int columnIndex, int[] column) {
239239
// represent boolean as int 1 for true, 0 for false, -1 for NA
240-
// should we use byte type instead of integer? I also tried the Boolean wrapper class but
241-
// could not get rJava to pass the boolean type to java as Boolean[]
242-
// seems better to pass int type to and from R
243240
columns[columnIndex - 1] = column;
244241
columnTypes[columnIndex - 1] = BOOLEAN;
245242
rowCount = column.length;

0 commit comments

Comments
 (0)