aboutsummaryrefslogtreecommitdiff
path: root/src/IvyClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/IvyClient.java')
-rwxr-xr-xsrc/IvyClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IvyClient.java b/src/IvyClient.java
index af42342..b723433 100755
--- a/src/IvyClient.java
+++ b/src/IvyClient.java
@@ -363,7 +363,7 @@ public class IvyClient implements Runnable {
traceDebug("Thread stopped");
}
- private synchronized void sendBuffer( String buffer ) throws IvyException {
+ protected synchronized void sendBuffer( String buffer ) throws IvyException {
buffer += "\n";
try {
out.write(buffer.getBytes() );
@@ -428,7 +428,7 @@ public class IvyClient implements Runnable {
return s;
}
- private boolean newParseMsg(String s) throws IvyException {
+ protected boolean newParseMsg(String s) throws IvyException {
if (s==null) throw new IvyException("null string to parse in protocol");
byte[] b = s.getBytes();
int from=0,to=0,msgType;