Skip to content

Commit 6c8bc52

Browse files
author
henry
committed
Remove scroll windows
1 parent 19539a1 commit 6c8bc52

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

specifics/700_beware_casts_and_generics_warnings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ List<String> ls = l;
5656
The compiler will issue:
5757

5858
```
59-
Type safety: The expression of type List needs unchecked conversion to conform to List<String>`
59+
The expression of type List needs unchecked conversion to conform to List<String>`
6060
```
6161

6262
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.

specifics/900_avoid_floats_and_doubles.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Note that, although `BigDecimal` can be constructed from a float, this takes us
6464
, numberTransactions
6565
, balance.subtract(transationCost.multiply(numberTransactions)));
6666

67-
// Gives After 7 transactions balance is 1.2999999999999999611421941381195210851728916168212890625
67+
// Gives After 7 transactions
68+
// balance is 1.2999999999999999611421941381195210851728916168212890625
6869
```
6970

0 commit comments

Comments
 (0)