fix NPE's

Signed-off-by: Ludovic Orban <lorban@bitronix.be>
This commit is contained in:
Ludovic Orban 2022-08-04 10:55:52 +02:00
parent 341adb4b62
commit 94a60dd862
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ public class QuickStartDescriptorProcessor extends IterativeDescriptorProcessor
{ {
private String _originAttributeName = null; private String _originAttributeName = null;
// possibly mounted resources that need to be cleaned up eventually // possibly mounted resources that need to be cleaned up eventually
private ResourceFactory.Closeable _resourceFactory; private ResourceFactory.Closeable _resourceFactory = ResourceFactory.closeable();
/** /**
* *

View File

@ -46,7 +46,7 @@ public class QuickStartDescriptorProcessor extends IterativeDescriptorProcessor
{ {
private String _originAttributeName = null; private String _originAttributeName = null;
// possibly mounted resources that need to be cleaned up eventually // possibly mounted resources that need to be cleaned up eventually
private ResourceFactory.Closeable _resourceFactory; private ResourceFactory.Closeable _resourceFactory = ResourceFactory.closeable();
/** /**
* *