From 8d84dde1139fa989e3a818af353d8033cda5a965 Mon Sep 17 00:00:00 2001 From: rees_s Date: Mon, 23 Mar 2020 17:37:01 +0100 Subject: [PATCH] Issue #64 Refactor project according to IntelliJ inspection suggestions. --- src/main/java/org/epics/ca/impl/Transport.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/epics/ca/impl/Transport.java b/src/main/java/org/epics/ca/impl/Transport.java index 4aa8035..a79f65d 100644 --- a/src/main/java/org/epics/ca/impl/Transport.java +++ b/src/main/java/org/epics/ca/impl/Transport.java @@ -14,28 +14,28 @@ public interface Transport * * @return remote address. */ - public InetSocketAddress getRemoteAddress(); + InetSocketAddress getRemoteAddress(); /** * Get context transport is living in. * * @return context transport is living in. */ - public ContextImpl getContext(); + ContextImpl getContext(); /** * Transport protocol minor revision. * * @return protocol minor revision. */ - public short getMinorRevision(); + short getMinorRevision(); - public int getPriority(); + int getPriority(); - public ByteBuffer acquireSendBuffer( int requiredSize ); + ByteBuffer acquireSendBuffer( int requiredSize ); - public void releaseSendBuffer( boolean ignore, boolean flush ); + void releaseSendBuffer( boolean ignore, boolean flush ); - public void flush(); + void flush(); }