From f0524d59f72fea84dfd242ee7d54ec2bbc2acab8 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Mon, 8 Aug 2022 16:00:48 +0200 Subject: [PATCH] Provide encoding to String#getBytes() Fixes ErrorProne complaint. Change-Id: I706b225f98187bf5f86999ed5342d0072e57e314 --- .../tst/org/eclipse/jgit/pgm/ToolTestCase.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/ToolTestCase.java b/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/ToolTestCase.java index 5f6b38c25..55db1a12d 100644 --- a/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/ToolTestCase.java +++ b/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/ToolTestCase.java @@ -9,6 +9,7 @@ */ package org.eclipse.jgit.pgm; +import static java.nio.charset.StandardCharsets.UTF_8; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; @@ -213,7 +214,7 @@ protected static InputStream createInputStream(String[] inputLines) { protected static InputStream createInputStream(List inputLines) { String input = String.join(System.lineSeparator(), inputLines); - InputStream inputStream = new ByteArrayInputStream(input.getBytes()); + InputStream inputStream = new ByteArrayInputStream(input.getBytes(UTF_8)); return inputStream; }