[PlutoCore] Made PlutoApplication's constructor private

This commit is contained in:
Tefek 2021-01-05 00:12:35 +01:00
parent 798bd179bf
commit af3b308adc
2 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,7 @@
* Added the `IVersion` interface * Added the `IVersion` interface
* Added support for version objects * Added support for version objects
* As a result, all fields except the version string are no longer compile-time constants * As a result, all fields except the version string are no longer compile-time constants
* `[PlutoCore]` Made `PlutoApplication`'s constructor private
Awaiting implementation: Awaiting implementation:
* `[PlutoLib]` Moved `cz.tefek.pluto.io.pluto.pp` to `cz.tefek.pluto.io.plutopackage` * `[PlutoLib]` Moved `cz.tefek.pluto.io.pluto.pp` to `cz.tefek.pluto.io.plutopackage`

View File

@ -31,6 +31,11 @@ public abstract class PlutoApplication
protected abstract void loop(); protected abstract void loop();
protected PlutoApplication()
{
}
/** /**
* A set of values used to create a new {@link PlutoApplication}. * A set of values used to create a new {@link PlutoApplication}.
* *