Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f4d4271

Browse files
Fixed a .toString()
1 parent 75c90ad commit f4d4271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎CCSPiJ/src/chapter2/Maze.java‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public String toString() {
127127
StringBuilder sb = new StringBuilder();
128128
for (Cell[] row : grid) {
129129
for (Cell cell : row) {
130-
sb.append(cell.toString());
130+
sb.append(cell);
131131
}
132132
sb.append(System.lineSeparator());
133133
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /