Skip to content

Commit

Permalink
Issue #64 Refactor project according to IntelliJ inspection suggestions.
Browse files Browse the repository at this point in the history
  • Loading branch information
simondelabici committed Mar 23, 2020
1 parent 5df6461 commit 8d84dde
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/org/epics/ca/impl/Transport.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();

}

0 comments on commit 8d84dde

Please sign in to comment.