Skip to content

Commit f0bfdc4

Browse files
committed
Testing Readme
1 parent 475d03d commit f0bfdc4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ printArray(doubleArr);
344344
```
345345

346346
**Bounded Type Parameter:**
347-
```java
347+
348348
public static <T extends Comparable<T>> T max(T x, T y) {
349349
return x.compareTo(y) > 0 ? x : y;
350350
}
@@ -385,7 +385,7 @@ try {
385385
```
386386
387387
**Deserialization Example:**
388-
```java
388+
389389
Employee employee = null;
390390
try {
391391
FileInputStream fileIn = new FileInputStream("/tmp/employee.ser");

0 commit comments

Comments
 (0)