Skip to content

Commit

Permalink
Modified int to Integer.
Browse files Browse the repository at this point in the history
  • Loading branch information
soyjack committed Oct 1, 2024
1 parent a26b348 commit d25669a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/yaphet/chapa/client/ChapaClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ public interface ChapaClient {

int getStatusCode();

int getStatus();
Integer getStatus();
}
2 changes: 1 addition & 1 deletion src/main/java/com/yaphet/chapa/client/ChapaClientImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public int getStatusCode() {
}

@Override
public int getStatus() {
public Integer getStatus() {
return 0;
}
}

0 comments on commit d25669a

Please sign in to comment.