summaryrefslogtreecommitdiff
path: root/Source/Core/Inline.cs
diff options
context:
space:
mode:
authorGravatar Ally Donaldson <unknown>2013-07-22 15:10:27 +0100
committerGravatar Ally Donaldson <unknown>2013-07-22 15:10:27 +0100
commit57fb103b7ae870973544f957ae1c230dbf570cdb (patch)
tree6fb2a02844e487dea5708016cbe882fffbdf8e46 /Source/Core/Inline.cs
parent5664c5e30f16b74eae4cdcb0b9ba65d5b030c815 (diff)
Changed Has method of PureSequence to Contains to make refactoring easier.
Diffstat (limited to 'Source/Core/Inline.cs')
-rw-r--r--Source/Core/Inline.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Inline.cs b/Source/Core/Inline.cs
index 26d57f68..47cf25d3 100644
--- a/Source/Core/Inline.cs
+++ b/Source/Core/Inline.cs
@@ -376,7 +376,7 @@ namespace Microsoft.Boogie {
substMapOld.Add(mVar, ie);
// FIXME why are we doing this? the modifies list should already include them.
// add the modified variable to the modifies list of the procedure
- if (!newModifies.Has(mie)) {
+ if (!newModifies.Contains(mie)) {
newModifies.Add(mie);
}
}