Skip to content

Commit

Permalink
Add missing @OverRide statements; remove unnecessary import
Browse files Browse the repository at this point in the history
Closes #66
  • Loading branch information
kohlschuetter authored and slachiewicz committed Nov 4, 2023
1 parent 98ad2c7 commit da2d73b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ public abstract class AbstractFilterSourcesMojo
* Set of delimiters for expressions to filter within the resources. These delimiters are specified in the form
* 'beginToken*endToken'. If no '*' is given, the delimiter is assumed to be the same for start and end. So, the
* default filtering delimiters might be specified as:
*
*
* <pre>
* &lt;delimiters&gt;
* &lt;delimiter&gt;${*}&lt;/delimiter&gt;
* &lt;delimiter&gt;@&lt;/delimiter&gt;
* &lt;/delimiters&gt;
* </pre>
*
*
* Since the '@' delimiter is the same on both ends, we don't need to specify '@*@' (though we can).
*/
@Parameter
Expand Down Expand Up @@ -123,6 +123,7 @@ public abstract class AbstractFilterSourcesMojo
protected MavenResourcesFiltering mavenResourcesFiltering;

/** {@inheritDoc} */
@Override
public void execute()
throws MojoExecutionException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ private static class MockCopyAnswer
implements Answer<Void>
{

@Override
public Void answer( InvocationOnMock invocation )
throws Throwable
{
Expand Down

0 comments on commit da2d73b

Please sign in to comment.