From b987d3850525c6c4667f72703ed506fe927c9e34 Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Sun, 21 Feb 2016 23:56:46 -0800 Subject: [PATCH] s/TMSPClient/Client/g --- proxy/remote_app_conn.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proxy/remote_app_conn.go b/proxy/remote_app_conn.go index 35200943a..ce93101b4 100644 --- a/proxy/remote_app_conn.go +++ b/proxy/remote_app_conn.go @@ -8,16 +8,16 @@ import ( // the application in general is not meant to be interfaced // with concurrent callers. type remoteAppConn struct { - *tmspcli.TMSPClient + *tmspcli.Client } func NewRemoteAppConn(addr string) (*remoteAppConn, error) { - client, err := tmspcli.NewTMSPClient(addr) + client, err := tmspcli.NewClient(addr) if err != nil { return nil, err } appConn := &remoteAppConn{ - TMSPClient: client, + Client: client, } return appConn, nil }