Make the Disk constructor with image order specification public

This commit is contained in:
2012-10-24 22:31:22 +00:00
parent 8727b12157
commit 9e2bf817d7
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ public class Disk {
/**
* Construct a Disk with the given byte array.
*/
protected Disk(String filename, ImageOrder imageOrder) {
public Disk(String filename, ImageOrder imageOrder) {
this.imageOrder = imageOrder;
this.filename = filename;
this.newImage = true;