Skip to content

Commit

Permalink
Cleanup access to option values
Browse files Browse the repository at this point in the history
  • Loading branch information
chaubold committed Jan 4, 2019
1 parent 47bc9e7 commit 3d1ad2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public abstract class AbstractReadWriteCachedCellImgOptions {
/**
* @return The values of the (derived) options object
*/
abstract Values values();
public abstract Values values();

/**
* @param other Options that should be merged with this option object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*/
public class DiskCachedCellImgOptions extends AbstractReadWriteCachedCellImgOptions
{
public final Values values;
private final Values values;

DiskCachedCellImgOptions(final Values values)
{
Expand All @@ -57,7 +57,7 @@ public DiskCachedCellImgOptions()
}

@Override
Values values() {
public Values values() {
return values;
}

Expand Down

0 comments on commit 3d1ad2f

Please sign in to comment.