summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.pgm
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@gmail.com>2016-10-17 16:18:22 +0900
committerMatthias Sohn <matthias.sohn@sap.com>2016-10-18 01:06:29 +0200
commit08649a9fd0a537c235f2ffbb3461e1e433496a96 (patch)
tree698b3d451687f787c83072e6d34b0fbad316822c /org.eclipse.jgit.pgm
parente0d1cfb5ad8d8504327458fca39ee9856755c14b (diff)
downloadjgit-08649a9fd0a537c235f2ffbb3461e1e433496a96.tar.gz
jgit-08649a9fd0a537c235f2ffbb3461e1e433496a96.zip
LfsStore: Don't invoke toString on String variable
Change-Id: I15d234e5d907d0bbb22a95cf781e915798bead30 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit.pgm')
-rw-r--r--org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/debug/LfsStore.java2
1 files changed, 1 insertions, 1 deletions
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);