From 08649a9fd0a537c235f2ffbb3461e1e433496a96 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Mon, 17 Oct 2016 16:18:22 +0900 Subject: [PATCH] LfsStore: Don't invoke toString on String variable Change-Id: I15d234e5d907d0bbb22a95cf781e915798bead30 Signed-off-by: David Pursehouse --- .../src/org/eclipse/jgit/pgm/debug/LfsStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java index c4d95481f1..c6c58c9931 100644 --- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java +++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java @@ -238,7 +238,7 @@ class LfsStore extends TextBuiltin { case S3: readAWSKeys(); checkOptions(); - S3Config config = new S3Config(region.toString(), bucket, + S3Config config = new S3Config(region, bucket, storageClass.toString(), accessKey, secretKey, expirationSeconds, disableSslVerify); repository = new S3Repository(config); -- 2.39.5