Skip to content

Commit

Permalink
deprecation message wording
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Nov 25, 2023
1 parent 3cdb019 commit 181f347
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class MvcFreemarkerModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new MvcFreemarkerModule())
.provider(this)
.description("Deprecated and can be replaced with 'bootique-mvc-jakarta-freemarker'.")
.description("Deprecated, can be replaced with 'bootique-mvc-jakarta-freemarker'.")
.build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class MvcMustacheModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new MvcMustacheModule())
.provider(this)
.description("Deprecated and can be replaced with 'bootique-mvc-jakarta-mustache'.")
.description("Deprecated, can be replaced with 'bootique-mvc-jakarta-mustache'.")
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class MvcModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new MvcModule())
.provider(this)
.description("Deprecated and can be replaced with 'bootique-mvc-jakarta'.")
.description("Deprecated, can be replaced with 'bootique-mvc-jakarta'.")
.config("mvc", MvcFactory.class)
.build();
}
Expand Down

0 comments on commit 181f347

Please sign in to comment.