summaryrefslogtreecommitdiff
path: root/Source/CodeContractsExtender
diff options
context:
space:
mode:
authorGravatar Ally Donaldson <unknown>2013-07-22 18:25:34 +0100
committerGravatar Ally Donaldson <unknown>2013-07-22 18:25:34 +0100
commit05f3db34fad65243cbfc077bea7247ed5594bbb9 (patch)
tree625673464f7e54dcc91b6e61f84a467ea4b09210 /Source/CodeContractsExtender
parentafaeb081ffcc1c258db6eb7c34ba0b04c493919a (diff)
More refactoring: PureCollections.Sequence not used anymore.
Diffstat (limited to 'Source/CodeContractsExtender')
-rw-r--r--Source/CodeContractsExtender/cce.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/CodeContractsExtender/cce.cs b/Source/CodeContractsExtender/cce.cs
index 31de9a70..12163c40 100644
--- a/Source/CodeContractsExtender/cce.cs
+++ b/Source/CodeContractsExtender/cce.cs
@@ -124,21 +124,6 @@ public static class cce {
public UnreachableException() {
}
}
- //[Pure]
- //public static bool IsValid(Microsoft.Dafny.Expression expression) {
- // return true;
- //}
- //public static List<T> toList<T>(PureCollections.Sequence s) {
- // List<T> toRet = new List<T>();
- // foreach (T t in s.elems)
- // if(t!=null)
- // toRet.Add(t);
- // return toRet;
- //}
-
- //internal static bool NonNullElements(Set set) {
- // return set != null && Contract.ForAll(0,set.Count, i => set[i] != null);
- //}
}