Skip to content

Commit 211d8fd

Browse files
authored
Move Signal.java to "solution" file in Secret Handshake (#2825)
Previously, it was listed as an "editor" file, which makes the file "read only" (i.e. students are not allowed to modify this file). But this contradicts our mentoring notes, which encourage students to make changes. Moving to "solution" allows students to make modifications. Config.json docs: https://exercism.org/docs/building/tracks/config-json Mentoring notes: https://github.com/exercism/website-copy/blob/main/tracks/java/exercises/secret-handshake/mentoring.md Fixes #2824
1 parent a180e26 commit 211d8fd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

exercises/practice/secret-handshake/.meta/config.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,15 @@
2121
],
2222
"files": {
2323
"solution": [
24-
"src/main/java/HandshakeCalculator.java"
24+
"src/main/java/HandshakeCalculator.java",
25+
"src/main/java/Signal.java"
2526
],
2627
"test": [
2728
"src/test/java/HandshakeCalculatorTest.java"
2829
],
2930
"example": [
3031
".meta/src/reference/java/HandshakeCalculator.java"
3132
],
32-
"editor": [
33-
"src/main/java/Signal.java"
34-
],
3533
"invalidator": [
3634
"build.gradle"
3735
]

0 commit comments

Comments
 (0)