Skip to content

Commit 5217c05

Browse files
committed
see if this fixes it
1 parent 824f735 commit 5217c05

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

sdk/src/main/java/io/opentdf/platform/sdk/AddressNormalizer.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
class AddressNormalizer {
1010
private static final Logger logger = LoggerFactory.getLogger(AddressNormalizer.class);
1111

12-
private AddressNormalizer(){
13-
}
14-
1512
static String normalizeAddress(String urlString, boolean usePlaintext) {
1613
URI uri;
1714
try {
@@ -45,7 +42,7 @@ static String normalizeAddress(String urlString, boolean usePlaintext) {
4542
}
4643
}
4744

48-
public void printThings() {
45+
public static void printThings() {
4946
System.out.println("here is some more code");
5047
}
5148
}

sdk/src/test/java/io/opentdf/platform/sdk/AddressNormalizerTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,9 @@ void testAddressNormaliationWithInsecureHTTPClient() {
2424
assertThat(normalizeAddress("example.org:1234", true)).isEqualTo("http://example.org:1234");
2525
assertThat(normalizeAddress("sftp://example.org", true)).isEqualTo("http://example.org:80");
2626
}
27+
28+
@Test
29+
void testPrintingStuff() {
30+
AddressNormalizer.printThings();
31+
}
2732
}

0 commit comments

Comments
 (0)