From f999c48666a033a2844a020933d7a1bf2605a094 Mon Sep 17 00:00:00 2001 From: bbottema Date: Tue, 14 May 2024 16:36:27 +0200 Subject: [PATCH] removed superfluous indentation [skip ci] --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 89b9891..ceeccaf 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,13 @@ socksServer.stop(); // stops server on all ports For use in junit 5 tests (for Junit 4 use a version < 3.0.0): ``` - @RegisterExtension - static SockServerExtension sockServerRule = new SockServerExtension(PROXY_SERVER_PORT); - - // or - - @RegisterExtension - static SockServerExtension sockServerRule = new SockServerExtension(PROXY_SERVER_PORT, myServerSocketFactory); +@RegisterExtension +static SockServerExtension sockServerRule = new SockServerExtension(PROXY_SERVER_PORT); + +// or + +@RegisterExtension +static SockServerExtension sockServerRule = new SockServerExtension(PROXY_SERVER_PORT, myServerSocketFactory); ``` And that's it!