diff --git a/analyzer-comments/java/general/exemplar.md b/analyzer-comments/java/general/exemplar.md new file mode 100644 index 000000000..e132c2be6 --- /dev/null +++ b/analyzer-comments/java/general/exemplar.md @@ -0,0 +1,5 @@ +# Exemplar + +🎉 Your solution to %s is exemplar, congratulations! +It is exactly what we think is the most idiomatic implementation of the tasks at hand. +Rejoice! diff --git a/analyzer-comments/java/general/remove_todo_comments.md b/analyzer-comments/java/general/remove_todo_comments.md new file mode 100644 index 000000000..a9ec5df4e --- /dev/null +++ b/analyzer-comments/java/general/remove_todo_comments.md @@ -0,0 +1,7 @@ +# Remove TODO comments + +It looks like you left some `// TODO: ...` comments in your code that were part of the solution stub. + +Your code passes the tests, which means those comments are no longer true - you already implemented everything that is necessary. + +Make sure to always remove outdated comments from your code. diff --git a/analyzer-comments/java/lasagna/reuse_code.md b/analyzer-comments/java/lasagna/reuse_code.md new file mode 100644 index 000000000..b78b30a2b --- /dev/null +++ b/analyzer-comments/java/lasagna/reuse_code.md @@ -0,0 +1,4 @@ +# Reuse code + +The `%s` method should reuse the logic implemented in `%s`. +Reusing existing methods can help make code easier to maintain.