Skip to content

Commit 1267ee5

Browse files
committed
mark class fields final
1 parent 1e9edf2 commit 1267ee5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

http/get_compressed/java/server/src/main/java/com/example/ArrowHttpServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ public static String pickCoding(Request request, List<String> available) {
276276
}
277277

278278
static class CompressionStrategy {
279-
public CompressionCodec ipcCodec;
280-
public String httpCoding;
279+
final public CompressionCodec ipcCodec;
280+
final public String httpCoding;
281281

282282
/**
283283
* No compression at all.

0 commit comments

Comments
 (0)