Conditions | 1 |
Total Lines | 8 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package com.osomapps.pt.estimation; |
||
23 | public static CurveEstimation of( |
||
24 | float impact, |
||
25 | float zeroAdjustmentBefore, |
||
26 | float zeroAdjustmentAfter, |
||
27 | float baseNumber, |
||
28 | float limit) { |
||
29 | return new CurveEstimation( |
||
30 | impact, zeroAdjustmentBefore, zeroAdjustmentAfter, baseNumber, limit); |
||
31 | } |
||
60 |