Skip to content

Commit eb3f5a7

Browse files
committed
kill some extra lines
1 parent 3c64452 commit eb3f5a7

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/coreclr/tools/superpmi/mcs/verbmerge.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@
1212
#include <sys/types.h>
1313
#include <dirent.h>
1414
#include <fnmatch.h>
15-
1615
#if !HAVE_DIRENT_D_TYPE
1716
#define DT_UNKNOWN 0
1817
#define DT_DIR 4
1918
#define DT_REG 8
2019
#define DT_LNK 10
2120
#endif // !HAVE_DIRENT_D_TYPE
22-
2321
#endif // TARGET_UNIX
2422

2523
#include <utility>
@@ -325,14 +323,10 @@ int verbMerge::FilterDirectory(LPCWSTR dir,
325323
}
326324

327325
if (dirEntryType == DT_UNKNOWN)
328-
{
329326
continue;
330-
}
331327

332328
if (fnmatch(searchPatternUtf8.c_str(), pEntry->d_name, 0) != 0)
333-
{
334329
continue;
335-
}
336330

337331
// Call the filter with &FindData like the Windows code below.
338332
FindData findData(dirEntryType, ConvertMultiByteToWideChar(pEntry->d_name));

0 commit comments

Comments
 (0)