优化代码,性能暴涨
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package org.kne.cloud.network.srv6;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.ObjectInputStream;
|
||||
|
||||
public class UnheaderObjectInputStream extends ObjectInputStream{
|
||||
|
||||
|
||||
public UnheaderObjectInputStream(InputStream in) throws IOException {
|
||||
super(in);
|
||||
}
|
||||
@Override
|
||||
protected void readStreamHeader() throws IOException {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user