Anthony Nguyen wrote:
> 
>   private void showAces(String path, Ace[] aces)
<snip>
> In the method above, there is a possibility that the array passed in is
> null. To fix this problem I added the following code to the beginning of the
> method:
> 
>     if (aces==null) {
>       System.out.println("Error: PropFind didn't return an AclProperty!");
>       return;
>     }
> 
> Anthony Nguyen

Hi Anthony

Thanks for the patch!
I have applied it and did the same fix for the other properties.


Dirk

Reply via email to