no need to buffer outputstream here
This commit is contained in:
parent
c81b417ea5
commit
d61f85ef86
@ -14,7 +14,6 @@
|
||||
*/
|
||||
package org.oscim.database.oscimap;
|
||||
|
||||
import java.io.BufferedOutputStream;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileNotFoundException;
|
||||
@ -940,7 +939,7 @@ public class MapDatabase implements IMapDatabase {
|
||||
mSocket.connect(mSockAddr, 30000);
|
||||
mSocket.setTcpNoDelay(true);
|
||||
|
||||
mCommandStream = new BufferedOutputStream(mSocket.getOutputStream());
|
||||
mCommandStream = mSocket.getOutputStream(); //new BufferedOutputStream();
|
||||
mResponseStream = mSocket.getInputStream();
|
||||
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user