We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1c4b1b commit 50e1232Copy full SHA for 50e1232
src/main/java/com/yahoo/ycb/LoadUtils.java
@@ -15,6 +15,9 @@
15
16
class LoadUtils {
17
18
+ private LoadUtils() {
19
+ }
20
+
21
protected static List<Dimension> parseDimensions(JsonNode node) throws IOException {
22
if (!node.isArray()) {
23
throw new IOException("Expecting array.");
src/test/java/com/yahoo/ycb/TestUtils.java
@@ -9,6 +9,9 @@
9
import java.net.URL;
10
11
public class TestUtils {
12
+ private TestUtils() {
13
14
public static Loader getLoader(String name) {
final URL url = Thread.currentThread().getContextClassLoader().getResource(name);
assert url != null;
0 commit comments