We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 475d03d commit f0bfdc4Copy full SHA for f0bfdc4
1 file changed
README.md
@@ -344,7 +344,7 @@ printArray(doubleArr);
344
```
345
346
**Bounded Type Parameter:**
347
-```java
+
348
public static <T extends Comparable<T>> T max(T x, T y) {
349
return x.compareTo(y) > 0 ? x : y;
350
}
@@ -385,7 +385,7 @@ try {
385
386
387
**Deserialization Example:**
388
389
Employee employee = null;
390
try {
391
FileInputStream fileIn = new FileInputStream("/tmp/employee.ser");
0 commit comments