changeset 1491:491b355acef7

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 02 May 2020 21:09:17 -0600
parents 9a2a2181a58f
children aaac1d29edea
files src/goodjava/rpc/FixedLengthInputStream.java src/goodjava/rpc/Rpc.java
diffstat 2 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/goodjava/rpc/FixedLengthInputStream.java	Sat May 02 20:42:28 2020 -0600
+++ b/src/goodjava/rpc/FixedLengthInputStream.java	Sat May 02 21:09:17 2020 -0600
@@ -1,7 +1,6 @@
 package goodjava.rpc;
 
 import java.io.InputStream;
-import java.io.FilterInputStream;
 import java.io.IOException;
 import java.io.EOFException;
 
--- a/src/goodjava/rpc/Rpc.java	Sat May 02 20:42:28 2020 -0600
+++ b/src/goodjava/rpc/Rpc.java	Sat May 02 21:09:17 2020 -0600
@@ -4,7 +4,7 @@
 
 
 // static utils
-public class Rpc {
+public final class Rpc {
 	private Rpc() {}  // never
 
 	public static final RpcResult OK = new RpcResult();