File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1- version 0.4.3
1+ version 0.4.4
2+ * Fix errors when calculating fuel with certain aircrafts.
3+
4+ version 0.4.3
25* Add profiles for A320 family.
36* Fix fuel burn bias bug.
47
Original file line number Diff line number Diff line change 22{
33 public static class IFuelTableExtension
44 {
5+ /// <summary>
6+ /// Returns null if f is null.
7+ /// </summary>
58 public static IFuelTable WithBias ( this IFuelTable f , double bias )
69 {
7- return new Helper ( f , bias ) ;
10+ return f == null ? null : new Helper ( f , bias ) ;
811 }
912
1013 private class Helper : IFuelTable
Original file line number Diff line number Diff line change 3131// You can specify all the values or you can default the Build and Revision Numbers
3232// by using the '*' as shown below:
3333// [assembly: AssemblyVersion("1.0.*")]
34- [ assembly: AssemblyVersion ( "0.4.3 .0" ) ]
34+ [ assembly: AssemblyVersion ( "0.4.4 .0" ) ]
3535[ assembly: AssemblyFileVersion ( "1.0.0.0" ) ]
You can’t perform that action at this time.
0 commit comments