Skip to content

Commit bc69a87

Browse files
committed
unnecessary usings removed
1 parent 788bc4b commit bc69a87

39 files changed

+69
-161
lines changed

src/UseCaseMakerApp/frmAbout.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
using System;
2-
using System.Drawing;
3-
using System.Collections;
4-
using System.ComponentModel;
52
using System.Windows.Forms;
63

74
namespace UseCaseMaker
85
{
9-
/// <summary>
10-
/// Descrizione di riepilogo per frmAbout.
11-
/// </summary>
12-
public class frmAbout : System.Windows.Forms.Form
6+
/// <summary>
7+
/// Descrizione di riepilogo per frmAbout.
8+
/// </summary>
9+
public class frmAbout : System.Windows.Forms.Form
1310
{
1411
private System.Windows.Forms.Panel pnlSep1;
1512
private System.Windows.Forms.Label label1;

src/UseCaseMakerApp/frmChooser.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.ComponentModel;
4-
using System.Data;
5-
using System.Drawing;
6-
using System.Text;
72
using System.Windows.Forms;
83
using UseCaseMakerLibrary;
94

src/UseCaseMakerApp/frmCreator.cs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
using System;
2-
using System.Drawing;
3-
using System.Collections;
4-
using System.ComponentModel;
51
using System.Windows.Forms;
62

73
namespace UseCaseMaker
84
{
9-
/// <summary>
10-
/// Descrizione di riepilogo per ModelExplorer.
11-
/// </summary>
12-
public class frmCreator : System.Windows.Forms.Form
5+
/// <summary>
6+
/// Descrizione di riepilogo per ModelExplorer.
7+
/// </summary>
8+
public class frmCreator : System.Windows.Forms.Form
139
{
1410
private Localizer localizer = null;
1511
private System.Windows.Forms.Button btnOK;

src/UseCaseMakerApp/frmDeleter.cs

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
1-
using System;
2-
using System.Drawing;
3-
using System.Collections;
4-
using System.ComponentModel;
5-
using System.Windows.Forms;
6-
71
namespace UseCaseMaker
82
{
9-
/// <summary>
10-
/// Descrizione di riepilogo per ModelExplorer.
11-
/// </summary>
12-
public class frmDeleter : System.Windows.Forms.Form
3+
/// <summary>
4+
/// Descrizione di riepilogo per ModelExplorer.
5+
/// </summary>
6+
public class frmDeleter : System.Windows.Forms.Form
137
{
148
private System.Windows.Forms.Button btnOK;
159
private System.Windows.Forms.Button btnCancel;

src/UseCaseMakerApp/frmHistoryNotes.cs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
using System;
2-
using System.Drawing;
3-
using System.Collections;
4-
using System.ComponentModel;
51
using System.Windows.Forms;
62

73
namespace UseCaseMaker
84
{
9-
/// <summary>
10-
/// Descrizione di riepilogo per ModelExplorer.
11-
/// </summary>
12-
public class frmHistoryNotes : System.Windows.Forms.Form
5+
/// <summary>
6+
/// Descrizione di riepilogo per ModelExplorer.
7+
/// </summary>
8+
public class frmHistoryNotes : System.Windows.Forms.Form
139
{
1410
private System.Windows.Forms.Button btnOK;
1511
private System.Windows.Forms.Button btnCancel;

src/UseCaseMakerApp/frmModelBrowser.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.ComponentModel;
4-
using System.Data;
52
using System.Drawing;
6-
using System.Text;
73
using System.Windows.Forms;
84
using UseCaseMakerLibrary;
95
using UseCaseMakerControls;

src/UseCaseMakerApp/frmNameChanger.cs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
using System;
2-
using System.Drawing;
3-
using System.Collections;
4-
using System.ComponentModel;
51
using System.Windows.Forms;
62

73
namespace UseCaseMaker
84
{
9-
/// <summary>
10-
/// Descrizione di riepilogo per ModelExplorer.
11-
/// </summary>
12-
public class frmNameChanger : System.Windows.Forms.Form
5+
/// <summary>
6+
/// Descrizione di riepilogo per ModelExplorer.
7+
/// </summary>
8+
public class frmNameChanger : System.Windows.Forms.Form
139
{
1410
private System.Windows.Forms.Label lblOldNameTitle;
1511
public System.Windows.Forms.Label lblOldName;

src/UseCaseMakerApp/frmNameListChooser.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
using System;
2-
using System.Drawing;
3-
using System.Collections;
42
using System.ComponentModel;
53
using System.Windows.Forms;
64

75
namespace UseCaseMaker
86
{
9-
/// <summary>
10-
/// Descrizione di riepilogo per frmNameListChooser.
11-
/// </summary>
12-
public class frmNameListChooser : Form
7+
/// <summary>
8+
/// Descrizione di riepilogo per frmNameListChooser.
9+
/// </summary>
10+
public class frmNameListChooser : Form
1311
{
1412
private Button btnOK;
1513
private Button btnCancel;

src/UseCaseMakerApp/frmOptions.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
using System;
2-
using System.Drawing;
3-
using System.Collections;
4-
using System.ComponentModel;
52
using System.Windows.Forms;
63
using System.Xml;
74
using System.IO;
85

96
namespace UseCaseMaker
107
{
11-
/// <summary>
12-
/// Descrizione di riepilogo per frmOptions.
13-
/// </summary>
14-
public class frmOptions : System.Windows.Forms.Form
8+
/// <summary>
9+
/// Descrizione di riepilogo per frmOptions.
10+
/// </summary>
11+
public class frmOptions : System.Windows.Forms.Form
1512
{
1613
private System.Windows.Forms.TabControl tabOptions;
1714
private System.Windows.Forms.TabPage pgOptLanguages;

src/UseCaseMakerApp/frmRefSelector.cs

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
using System;
2-
using System.Drawing;
3-
using System.Collections;
4-
using System.ComponentModel;
1+
using System;
52
using System.Windows.Forms;
63
using UseCaseMakerLibrary;
74

85
namespace UseCaseMaker
96
{
10-
/// <summary>
11-
/// Descrizione di riepilogo per frmRefSelector.
12-
/// </summary>
13-
public class frmRefSelector : System.Windows.Forms.Form
7+
/// <summary>
8+
/// Descrizione di riepilogo per frmRefSelector.
9+
/// </summary>
10+
public class frmRefSelector : System.Windows.Forms.Form
1411
{
1512
private Model model;
1613
private UseCase caller;

0 commit comments

Comments
 (0)