Skip to content
Snippets Groups Projects
Commit 246dcc6f authored by Jesper's avatar Jesper
Browse files

Replace "can not" with "cannot"

parent fefb6408
No related branches found
No related tags found
No related merge requests found
...@@ -869,7 +869,8 @@ public aspect Attributes { ...@@ -869,7 +869,8 @@ public aspect Attributes {
buf.append("\\b)"); buf.append("\\b)");
pattern = buf.toString(); pattern = buf.toString();
} }
String newContents = "refined_" + original.aspectName() + "_" + name() + "_" + methodName; String newContents = String.format("refined_%s_%s_%s",
original.aspectName(), name(), methodName);
// TODO: update keep to false if no strings are replaced. // TODO: update keep to false if no strings are replaced.
Matcher matcher = Pattern.compile(pattern).matcher(s); Matcher matcher = Pattern.compile(pattern).matcher(s);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment