Skip to content

Commit

Permalink
Fix bug in default provider
Browse files Browse the repository at this point in the history
  • Loading branch information
qtc-de committed May 6, 2024
1 parent 74e052a commit d2e3cfe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/eu/tneitzel/rmg/plugin/DefaultProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ else if (args == null)
@Override
public Object[] getArgumentArray(String[] args)
{
if (args.length == 0)
{
return new Object[] {};
}

Object[] result = null;
ClassPool pool = ClassPool.getDefault();

Expand Down

0 comments on commit d2e3cfe

Please sign in to comment.