From 03be8ee46101a0eaec5eb2a89ff8c6e68ba4e2a0 Mon Sep 17 00:00:00 2001 From: "Dan S. Camper" Date: Tue, 5 Dec 2023 07:45:44 -0600 Subject: [PATCH] Whitespace fix --- ecl/hql/hqlgram2.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ecl/hql/hqlgram2.cpp b/ecl/hql/hqlgram2.cpp index 02fe20fb17a..df6513bead5 100644 --- a/ecl/hql/hqlgram2.cpp +++ b/ecl/hql/hqlgram2.cpp @@ -9004,16 +9004,16 @@ void HqlGram::setPluggableModeExpr(attribute & targetAttr, attribute & mode, Hql // TODO: Look for a plugin filetype of name fileFormatStr DBGLOG("HqlGram::setPluggableModeExpr processing file type %s", fileFormatStr.str()); - // Following is a placeholder to make the parser happy -- note the hardwiring - // of CSV format.... - if (options) - { - targetAttr.setExpr(createValue(no_csv, makeNullType(), *options)); - } - else - { - targetAttr.setExpr(createValue(no_csv, makeNullType())); - } + // Following is a placeholder to make the parser happy -- note the hardwiring + // of CSV format.... + if (options) + { + targetAttr.setExpr(createValue(no_csv, makeNullType(), *options)); + } + else + { + targetAttr.setExpr(createValue(no_csv, makeNullType())); + } } void HqlGram::checkValidRecordMode(IHqlExpression * dataset, attribute & atr, attribute & modeattr)