Skip to content

Commit

Permalink
Move Signal.java to "solution" file in Secret Handshake (#2825)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kahgoh authored Jul 21, 2024
1 parent a180e26 commit 211d8fd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions exercises/practice/secret-handshake/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,15 @@
],
"files": {
"solution": [
"src/main/java/HandshakeCalculator.java"
"src/main/java/HandshakeCalculator.java",
"src/main/java/Signal.java"
],
"test": [
"src/test/java/HandshakeCalculatorTest.java"
],
"example": [
".meta/src/reference/java/HandshakeCalculator.java"
],
"editor": [
"src/main/java/Signal.java"
],
"invalidator": [
"build.gradle"
]
Expand Down

0 comments on commit 211d8fd

Please sign in to comment.