Correction des warning de Eclipse
Des types génériques étaient déclarés de façon redondante.
This commit is contained in:
parent
0a11c816d4
commit
42e77f1da0
@ -37,7 +37,7 @@ public class Main {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
CircularFifoQueue<String> lineBuffer = new CircularFifoQueue<String>(100);
|
CircularFifoQueue<String> lineBuffer = new CircularFifoQueue<>(100);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -102,7 +102,7 @@ public class Main {
|
|||||||
|
|
||||||
|
|
||||||
public static String readUTF8LineFromFile(RandomAccessFile reader) {
|
public static String readUTF8LineFromFile(RandomAccessFile reader) {
|
||||||
List<Byte> bytes = new ArrayList<Byte>();
|
List<Byte> bytes = new ArrayList<>();
|
||||||
|
|
||||||
byte b;
|
byte b;
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user