Skip to content

Commit

Permalink
Remove scroll windows
Browse files Browse the repository at this point in the history
  • Loading branch information
henry committed Apr 21, 2016
1 parent 19539a1 commit 6c8bc52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion specifics/700_beware_casts_and_generics_warnings.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ List<String> ls = l;
The compiler will issue:

```
Type safety: The expression of type List needs unchecked conversion to conform to List<String>`
The expression of type List needs unchecked conversion to conform to List<String>`
```

Make sure that all such warnings should be addressed, either by imposing a zero compiler warnings policy or by configuring the compiler to treat them as errors.
Expand Down
3 changes: 2 additions & 1 deletion specifics/900_avoid_floats_and_doubles.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Note that, although `BigDecimal` can be constructed from a float, this takes us
, numberTransactions
, balance.subtract(transationCost.multiply(numberTransactions)));

// Gives After 7 transactions balance is 1.2999999999999999611421941381195210851728916168212890625
// Gives After 7 transactions
// balance is 1.2999999999999999611421941381195210851728916168212890625
```

0 comments on commit 6c8bc52

Please sign in to comment.