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;

src/UseCaseMakerApp/frmReorder.cs

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
1-
using System;
2-
using System.Drawing;
3-
using System.Collections;
4-
using System.Collections.Specialized;
5-
using System.ComponentModel;
61
using System.Windows.Forms;
72

83
namespace UseCaseMaker
94
{
10-
/// <summary>
11-
/// Descrizione di riepilogo per frmReorder.
12-
/// </summary>
13-
public class frmReorder : System.Windows.Forms.Form
5+
/// <summary>
6+
/// Descrizione di riepilogo per frmReorder.
7+
/// </summary>
8+
public class frmReorder : System.Windows.Forms.Form
149
{
1510
private string prefix;
1611

src/UseCaseMakerApp/frmRequirementEditor.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/frmSearchReplace.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;
32
using System.ComponentModel;
4-
using System.Data;
5-
using System.Drawing;
6-
using System.Text;
73
using System.Windows.Forms;
84
using UseCaseMakerControls;
95
using UseCaseMakerLibrary;

src/UseCaseMakerApp/frmTabView.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.ComponentModel;
4-
using System.Data;
53
using System.Drawing;
6-
using System.Text;
74
using System.Windows.Forms;
85
using System.Diagnostics;
96
using UseCaseMakerLibrary;

src/UseCaseMakerControls/AutoCompleteForm.cs

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

85
namespace UseCaseMakerControls
96
{
10-
/// <summary>
11-
/// Summary description for AutoCompleteForm.
12-
/// </summary>
13-
public class AutoCompleteForm : System.Windows.Forms.Form
7+
/// <summary>
8+
/// Summary description for AutoCompleteForm.
9+
/// </summary>
10+
public class AutoCompleteForm : System.Windows.Forms.Form
1411
{
1512
private StringCollection items = new StringCollection();
1613
private System.Windows.Forms.Button border;

src/UseCaseMakerControls/IndexedList.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22
using System.Collections;
33
using System.ComponentModel;
44
using System.Drawing;
5-
using System.Data;
65
using System.Windows.Forms;
76
using System.Reflection;
87

98
namespace UseCaseMakerControls
109
{
11-
/// <summary>
12-
/// Descrizione di riepilogo per UserControl1.
13-
/// </summary>
14-
[ Bindable(true) ]
10+
/// <summary>
11+
/// Descrizione di riepilogo per UserControl1.
12+
/// </summary>
13+
[ Bindable(true) ]
1514
public class IndexedList : System.Windows.Forms.Panel
1615
{
1716
#region Private Constants And Enumerators

src/UseCaseMakerControls/IndexedListItemCollection.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
using System.Collections;
33
using System.ComponentModel;
44
using System.Windows.Forms;
5-
using System.Drawing;
65

76
namespace UseCaseMakerControls
87
{
9-
/// <summary>
10-
/// Descrizione di riepilogo per IndexedListItemCollection.
11-
/// </summary>
12-
public class IndexedListItemCollection : IList, ICollection, IEnumerable
8+
/// <summary>
9+
/// Descrizione di riepilogo per IndexedListItemCollection.
10+
/// </summary>
11+
public class IndexedListItemCollection : IList, ICollection, IEnumerable
1312
{
1413
#region Private Enumerators and Constants
1514
#endregion

src/UseCaseMakerControls/ItemTextChangedEventArgs.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
using System;
2-
using System.Windows.Forms;
3-
41
namespace UseCaseMakerControls
52
{
6-
/// <summary>
7-
/// Descrizione di riepilogo per ItemTextChangedEventArgs.
8-
/// </summary>
9-
public class ItemTextChangedEventArgs
3+
/// <summary>
4+
/// Descrizione di riepilogo per ItemTextChangedEventArgs.
5+
/// </summary>
6+
public class ItemTextChangedEventArgs
107
{
118
private LinkEnabledRTB item = null;
129
public ItemTextChangedEventArgs(LinkEnabledRTB item)

src/UseCaseMakerControls/MouseOverTokenEventArgs.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
using System;
21
using System.Windows.Forms;
32

43
namespace UseCaseMakerControls
54
{
6-
/// <summary>
7-
/// Descrizione di riepilogo per MouseOverTokenEventArgs.
8-
/// </summary>
9-
public class MouseOverTokenEventArgs : MouseEventArgs
5+
/// <summary>
6+
/// Descrizione di riepilogo per MouseOverTokenEventArgs.
7+
/// </summary>
8+
public class MouseOverTokenEventArgs : MouseEventArgs
109
{
1110
private string token = string.Empty;
1211
private LinkEnabledRTB item = null;

src/UseCaseMakerControls/RTBLinkEnabled.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
using System.Collections;
44
using System.Drawing;
55
using System.Windows.Forms;
6-
using System.Text;
7-
using System.Runtime.InteropServices;
86

97
namespace UseCaseMakerControls
108
{
11-
public class LinkEnabledRTB : RichTextBox
9+
public class LinkEnabledRTB : RichTextBox
1210
{
1311
#region Members
1412
//Members exposed via properties

src/UseCaseMakerControls/Win32.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
using System;
2-
using System.Runtime;
32
using System.Runtime.InteropServices;
43

54
using HWND = System.IntPtr;
65

76
namespace UseCaseMakerControls
87
{
9-
/// <summary>
10-
/// Summary description for Win32.
11-
/// </summary>
12-
public class Win32
8+
/// <summary>
9+
/// Summary description for Win32.
10+
/// </summary>
11+
public class Win32
1312
{
1413
private Win32()
1514
{

src/UseCaseMakerLibrary/ActiveActor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Xml.Serialization;
32

43
namespace UseCaseMakerLibrary
54
{

src/UseCaseMakerLibrary/Actors.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections;
3-
using System.Xml.Serialization;
42

53
namespace UseCaseMakerLibrary
64
{

src/UseCaseMakerLibrary/GlossaryItem.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
using System;
2-
using System.Xml.Serialization;
32

43
namespace UseCaseMakerLibrary
54
{
6-
/**
5+
/**
76
* @brief Descrizione di riepilogo per GlossaryItem.
87
*/
98
[Serializable]

src/UseCaseMakerLibrary/GlossaryItems.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
using System;
2-
using System.Xml.Serialization;
32

43
namespace UseCaseMakerLibrary
54
{
6-
/**
5+
/**
76
* @brief Descrizione di riepilogo per GlossaryItems.
87
*/
98
[Serializable]

0 commit comments

Comments
 (0)