Cleanup (test data format)

This commit is contained in:
Roman Shevchenko
2018-08-10 15:10:31 +02:00
parent 6f70918c3b
commit b2a6767640
6 changed files with 46 additions and 28 deletions

View File

@@ -1,11 +1,9 @@
package pkg;
public final class PrivateEmptyConstructor {
private PrivateEmptyConstructor() {}
public final class TestPrivateEmptyConstructor {
private TestPrivateEmptyConstructor() {}
public final void test() {
System.out.println("test");
}
}
}

View File

@@ -1,5 +1,6 @@
package pkg
object TestSynchronizedUnprotected {
class TestSynchronizedUnprotected {
fun test() {
synchronized(this) {
println("Boom")