Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI/Triplet.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI/Triplet.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/Triplet.cs b/mcs/class/System.Web/System.Web.UI/Triplet.cs
deleted file mode 100755
index 28c8546c762..00000000000
--- a/mcs/class/System.Web/System.Web.UI/Triplet.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// System.Web.UI.Triplet.cs
-//
-// Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-using System;
-
-namespace System.Web.UI {
-
- public class Triplet
- {
- public object First;
- public object Second;
- public object Third;
-
- public Triplet ()
- {
- }
-
- public Triplet (object x, object y)
- {
- First = x;
- Second = y;
- }
-
- public Triplet (object x, object y, object z)
- {
- First = x;
- Second = y;
- Third = z;
- }
- }
-}