Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,6 @@ public final class Font extends Resource {
*/
private final float fontHeight;

/**
* Prevents uninitialized instances from being created outside the package.
*/
Font(Device device) {
super(device);
this.zoom = DPIUtil.getNativeDeviceZoom();
this.fontHeight = 0;
}

private Font(Device device, long handle, int zoom) {
super(device);
this.handle = handle;
Expand Down
Loading