C2025-024 Electronic Procedures Phase 2 - XML Export
Removed unnecessary usings
This commit is contained in:
@@ -1,8 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
|
||||||
using System.Data;
|
|
||||||
using System.Drawing;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using VEPROMS.CSLA.Library;
|
using VEPROMS.CSLA.Library;
|
||||||
@@ -17,7 +14,7 @@ using System.Linq;
|
|||||||
|
|
||||||
namespace VEPROMS
|
namespace VEPROMS
|
||||||
{
|
{
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Major Code Smell", "S6580:Use a format provider when parsing date and time", Justification = "dts formatting may be different time per plant")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Major Code Smell", "S6580:Use a format provider when parsing date and time", Justification = "dts formatting may be different time per plant")]
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Major Code Smell", "S6561:Avoid using \"DateTime.Now\" for benchmarking or timing operations", Justification = "Rough Time estimate on ProgressBars")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Major Code Smell", "S6561:Avoid using \"DateTime.Now\" for benchmarking or timing operations", Justification = "Rough Time estimate on ProgressBars")]
|
||||||
public partial class dlgExportImport : Form
|
public partial class dlgExportImport : Form
|
||||||
{
|
{
|
||||||
|
@@ -4,17 +4,16 @@ using System.IO;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Xml;
|
using System.Xml;
|
||||||
using VEPROMS.CSLA.Library;
|
using VEPROMS.CSLA.Library;
|
||||||
|
|
||||||
namespace VEPROMS
|
namespace VEPROMS
|
||||||
{
|
{
|
||||||
//C2025-024 Electronic Procedures - Phase 2 (PROMS XML output)
|
//C2025-024 Electronic Procedures - Phase 2 (PROMS XML output)
|
||||||
//class inherits from normal import/export form
|
//class inherits from normal import/export form
|
||||||
//then adds additional functionality
|
//then adds additional functionality
|
||||||
#pragma warning disable S101 // Types should be named in PascalCase
|
#pragma warning disable S101 // Types should be named in PascalCase
|
||||||
public partial class dlgExportImportEP : dlgExportImport
|
public partial class dlgExportImportEP : dlgExportImport
|
||||||
#pragma warning restore S101 // Types should be named in PascalCase
|
#pragma warning restore S101 // Types should be named in PascalCase
|
||||||
{
|
{
|
||||||
private readonly AnnotationTypeInfo _AnnotationType;
|
private readonly AnnotationTypeInfo _AnnotationType;
|
||||||
|
Reference in New Issue
Block a user