Skip to content

Commit

Permalink
Make classes not public that shouldn't be public
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-james committed Sep 22, 2024
1 parent 33be945 commit 24955cb
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 @@ -7,11 +7,11 @@
import java.util.List;
import java.util.stream.Collectors;

public class SolanaLegacyInstructionView extends SolanaInstructionView implements MessageVisitor.LegacyInstructionView
class SolanaLegacyInstructionView extends SolanaInstructionView implements MessageVisitor.LegacyInstructionView
{
private final MessageVisitor.LegacyAccountsView accountsView;

public SolanaLegacyInstructionView(
SolanaLegacyInstructionView(
final int program,
final List<Integer> accounts,
final ByteBuffer data,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import java.util.List;
import java.util.stream.Collectors;

public class SolanaV0InstructionView extends SolanaInstructionView implements MessageVisitor.V0InstructionView
class SolanaV0InstructionView extends SolanaInstructionView implements MessageVisitor.V0InstructionView
{
private final MessageVisitor.V0AccountsView accountsView;

Expand Down

0 comments on commit 24955cb

Please sign in to comment.