From c8a55298c09fbff3b351c21a248153f9433f16b6 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Tue, 8 Nov 2016 10:43:08 -0800 Subject: [PATCH] Updated Using S3Proxy in Java projects (markdown) --- Using-S3Proxy-in-Java-projects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Using-S3Proxy-in-Java-projects.md b/Using-S3Proxy-in-Java-projects.md index cbb334f..aed7c6e 100644 --- a/Using-S3Proxy-in-Java-projects.md +++ b/Using-S3Proxy-in-Java-projects.md @@ -59,7 +59,7 @@ S3Proxy s3Proxy = S3Proxy.builder() .build(); s3Proxy.start(); -while (!info.s3Proxy.getState().equals(AbstractLifeCycle.STARTED)) { +while (!s3Proxy.getState().equals(AbstractLifeCycle.STARTED)) { Thread.sleep(1); } ```