Skip to content

Commit

Permalink
[Refactoring] adding type in Lane series
Browse files Browse the repository at this point in the history
  • Loading branch information
inrir committed Jun 2, 2023
1 parent 9cff1ec commit db648d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LaneEventInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public interface LaneEventInterface extends java.rmi.Remote {
public int getFrameNum( ) throws java.rmi.RemoteException;
public HashMap getScore( ) throws java.rmi.RemoteException;
public HashMap<Bowler , int[]> getScore( ) throws java.rmi.RemoteException;
public int[] getCurScores( ) throws java.rmi.RemoteException;
public int getIndex() throws java.rmi.RemoteException;
public int getFrame() throws java.rmi.RemoteException;
Expand Down
2 changes: 1 addition & 1 deletion LaneView.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class LaneView implements LaneObserver {

JFrame frame;
Container cpanel;
Vector bowlers;
Vector<Bowler> bowlers;
int cur;
Iterator bowlIt;

Expand Down

0 comments on commit db648d2

Please sign in to comment.