Skip to content
Snippets Groups Projects
Commit 8d8e66c8 authored by Thomas Oster's avatar Thomas Oster
Browse files

Make methods visible for subclasses

parent a687ea13
No related branches found
No related tags found
No related merge requests found
...@@ -186,7 +186,7 @@ abstract class EpilogCutter extends LaserCutter ...@@ -186,7 +186,7 @@ abstract class EpilogCutter extends LaserCutter
return result.toByteArray(); return result.toByteArray();
} }
private void sendPjlJob(LaserJob job, byte[] pjlData) throws UnknownHostException, UnsupportedEncodingException, IOException, Exception protected void sendPjlJob(LaserJob job, byte[] pjlData) throws UnknownHostException, UnsupportedEncodingException, IOException, Exception
{ {
String localhost; String localhost;
try try
...@@ -221,7 +221,7 @@ abstract class EpilogCutter extends LaserCutter ...@@ -221,7 +221,7 @@ abstract class EpilogCutter extends LaserCutter
waitForResponse(0); waitForResponse(0);
} }
private void connect() throws IOException, SocketTimeoutException protected void connect() throws IOException, SocketTimeoutException
{ {
if (SIMULATE_COMMUNICATION) if (SIMULATE_COMMUNICATION)
{ {
...@@ -236,7 +236,7 @@ abstract class EpilogCutter extends LaserCutter ...@@ -236,7 +236,7 @@ abstract class EpilogCutter extends LaserCutter
} }
} }
private void disconnect() throws IOException protected void disconnect() throws IOException
{ {
if (!SIMULATE_COMMUNICATION) if (!SIMULATE_COMMUNICATION)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment