Mercurial > stress-tester
changeset 1136:8e488159250f
ReqRespPair - redundant class removed
author | Devel 2 |
---|---|
date | Tue, 09 Jun 2020 08:34:36 +0200 |
parents | 32ad0e5ff0fc |
children | 49969086dded |
files | stress-tester/src/main/java/com/passus/st/client/ReqRespPair.java |
diffstat | 1 files changed, 0 insertions(+), 20 deletions(-) [+] |
line wrap: on
line diff
--- a/stress-tester/src/main/java/com/passus/st/client/ReqRespPair.java Mon Jun 08 22:44:16 2020 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -package com.passus.st.client; - -public class ReqRespPair<R, S> { - - final R request; - final S response; - - public ReqRespPair(R request, S response) { - this.request = request; - this.response = response; - } - - public R getRequest() { - return request; - } - - public S getResponse() { - return response; - } -}