fix NPE's
Signed-off-by: Ludovic Orban <lorban@bitronix.be>
This commit is contained in:
parent
341adb4b62
commit
94a60dd862
|
@ -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();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
|
@ -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();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue