Skip to content

Commit d7bc9af

Browse files
committed
Update CSVinterface.cls
1 parent d7110e1 commit d7bc9af

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

src/CSVinterface.cls

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1744,19 +1744,6 @@ Private Function MultiDimensional(CheckArray As Variant) As Boolean
17441744
ErrHandler_MultiDimensional:
17451745
MultiDimensional = False '1 dimension
17461746
End Function
1747-
Private Function OddQuotes(ByRef FieldStr As String, ByRef quoteChar As String) As Boolean
1748-
Dim curQuotePos As Long
1749-
Dim matchCounter As Long
1750-
Dim res As Long
1751-
1752-
matchCounter = 0
1753-
curQuotePos = InStrB(1, FieldStr, quoteChar)
1754-
Do While curQuotePos
1755-
matchCounter = matchCounter + 1
1756-
curQuotePos = InStrB(curQuotePos + 1, FieldStr, quoteChar)
1757-
Loop
1758-
OddQuotes = (matchCounter Mod 2)
1759-
End Function
17601747
Public Sub OpenSeqReader(configObj As parserConfig, _
17611748
ParamArray FilterColumns() As Variant)
17621749
On Error GoTo OpenSeqReader_Error_Handler
@@ -3161,5 +3148,4 @@ Private Function UnixToStandardEscapeSeq(ByRef UnixEscapedString As String, _
31613148
Else
31623149
UnixToStandardEscapeSeq = UnixEscapedString
31633150
End If
3164-
End Function
3165-
3151+
End Function

0 commit comments

Comments
 (0)