Fix BOM issue in using directives in Report.cs and ReportsFactory.cs

The `using DevExpress.XtraReports.UI;` directive was modified in
both `Report.cs` and `ReportsFactory.cs` due to the addition of a
non-visible character (likely a Byte Order Mark or BOM) at the
beginning of the line. This change does not affect functionality
but may resolve potential issues with tools or version control
systems sensitive to such characters.
This commit is contained in:
2026-06-15 10:18:31 +02:00
parent 3090711892
commit d6bafc64a6
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
using DevExpress.XtraReports.UI;
using DevExpress.XtraReports.UI;
namespace EnvelopeGenerator.WebUI.Client.PredefinedReports {
public class Report : XtraReport {
private TopMarginBand topMarginBand1;

View File

@@ -1,4 +1,4 @@
using DevExpress.XtraReports.UI;
using DevExpress.XtraReports.UI;
namespace EnvelopeGenerator.WebUI.Client.PredefinedReports {
public static class ReportsFactory