summaryrefslogtreecommitdiff
path: root/src/domain/Well.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/domain/Well.cs')
-rw-r--r--src/domain/Well.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/domain/Well.cs b/src/domain/Well.cs
index a9dcaff..e6019f3 100644
--- a/src/domain/Well.cs
+++ b/src/domain/Well.cs
@@ -43,9 +43,8 @@ namespace domain
this.curve.Accept( production =>
{
if( production.OccursDuring(period)){
- if(production.IsGreaterThanAvailableAt(facility)){
+ if(production.IsGreaterThanAvailableAt(facility))
throw new Exception();
- }
}
});
}