Skip to content

Commit

Permalink
Adjust visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Feb 9, 2024
1 parent 3889b4b commit 9eaa707
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import de.hpi.swa.trufflesqueak.util.UnsafeUtils;

public final class ByteStorage extends NativeObjectStorage {
final byte[] storage;
final class ByteStorage extends NativeObjectStorage {
private final byte[] storage;

public ByteStorage(final byte[] storage) {
this.storage = storage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import de.hpi.swa.trufflesqueak.util.UnsafeUtils;

public final class IntStorage extends NativeObjectStorage {
final int[] storage;
final class IntStorage extends NativeObjectStorage {
private final int[] storage;

public IntStorage(final int[] storage) {
this.storage = storage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import de.hpi.swa.trufflesqueak.util.UnsafeUtils;

public final class LongStorage extends NativeObjectStorage {
final long[] storage;
final class LongStorage extends NativeObjectStorage {
private final long[] storage;

public LongStorage(final long[] storage) {
this.storage = storage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import de.hpi.swa.trufflesqueak.util.UnsafeUtils;

public final class ShortStorage extends NativeObjectStorage {
final short[] storage;
final class ShortStorage extends NativeObjectStorage {
private final short[] storage;

public ShortStorage(final short[] storage) {
this.storage = storage;
Expand Down

0 comments on commit 9eaa707

Please sign in to comment.