Skip to content

Commit 92cad20

Browse files
committed
Changed sb.isEmpty to sb.toString().isEmpty()
1 parent e567922 commit 92cad20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/microsoft/sqlserver/jdbc/SQLServerBulkCSVFileRecord.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ private String readLineEscapeDelimiters() throws SQLServerException {
246246
if (c == -1 && quoteCount % 2 != 0) { // stream ended, but we are within quotes -- data problem
247247
throw new SQLServerException(SQLServerException.getErrString("R_InvalidCSVQuotes"), null, 0, null);
248248
}
249-
if ((c == -1) && sb.isEmpty()) { // keep semantics of readLine() by returning a null when there is no more data
249+
if ((c == -1) && sb.toString().isEmpty()) { // keep semantics of readLine() by returning a null when there is no more data
250250
return null;
251251
}
252252
} catch (IOException e) {

0 commit comments

Comments
 (0)