Skip to content
Snippets Groups Projects
Commit 857621a3 authored by Jesper's avatar Jesper
Browse files

Replace "can not" with "cannot"

parent ea796eea
No related branches found
No related tags found
No related merge requests found
......@@ -467,7 +467,7 @@ aspect AttributeProblems {
if (value == null) {
msg = "missing CollectionGroup argument";
} else if (value.equals("")) {
msg = "CollectionGroup argument can not be empty";
msg = "CollectionGroup argument cannot be empty";
} else if (!isValidIdentifierPart(value)) {
msg = "CollectionGroup argument must be a valid identifier part";
}
......
......@@ -56,7 +56,7 @@ public abstract class Problem {
public ProblemBuilder sourceFile(String filename) {
if (filename == null) {
throw new NullPointerException("filename can not be null");
throw new NullPointerException("filename cannot be null");
}
this.filename = filename;
return this;
......@@ -84,7 +84,7 @@ public abstract class Problem {
private void checkNotNull() {
if (message == null) {
throw new NullPointerException("message can not be null");
throw new NullPointerException("message cannot be null");
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment