Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
coding-convention committed Nov 12, 2023
1 parent 3145c16 commit 669fdd4
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,12 @@ private List<GitHubRepoDto.RepoInfoDto> listUserRepos(String user, String token)
String name = node.get("name").asText();
String fullName = node.get("full_name").asText();
Boolean isPrivate = node.get("private").asBoolean();
logger.info("1");
Boolean isFork = node.get("fork").asBoolean();
Integer forksCount = node.get("forks_count").asInt();
String description = node.get("description").asText();
logger.info("2");
String language = node.get("language").asText();
logger.info("3");
String stargazers_url = node.get("stargazers_url").asText();
Integer starCount = node.get("stargazers_count").asInt();
logger.info("4");
Integer open_issues_count = node.get("open_issues_count").asInt();
String visibility = node.get("visibility").asText();
String updatedAt = node.get("updated_at").asText();
Expand Down

0 comments on commit 669fdd4

Please sign in to comment.