Skip to content

Commit e22dee6

Browse files
paulirwinCopilot
andcommitted
Remove extra semicolon in WriteLineDocTask.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 2fa44c4 commit e22dee6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Lucene.Net.Benchmark/ByTask/Tasks/WriteLineDocTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public WriteLineDocTask(PerfRunData runData, bool performWriteHeader)
113113
throw new ArgumentException("line.file.out must be set");
114114
}
115115
Stream @out = StreamUtils.GetOutputStream(m_fname); // LUCENENET specific: changed to use string fileName instead of allocating a FileInfo (#832)
116-
m_lineFileOut = new StreamWriter(@out, StandardCharsets.UTF_8); ;
116+
m_lineFileOut = new StreamWriter(@out, StandardCharsets.UTF_8);
117117
docMaker = runData.DocMaker;
118118

119119
// init fields

0 commit comments

Comments
 (0)