
|
If you were logged in you would be able to see more operations.
|
|
|
|
I get a NullPointerException when calling {{getFinalFireTime()}}. This happens if the property {{endTime}} is NULL.
The problem is in the following code, because you cannot pass a Null value to {{Calendar.setTime()}}
{code}
java.util.Calendar currCal = java.util.Calendar.getInstance();
currCal.setTime(this.endTime);
{code}
|
|
Description
|
I get a NullPointerException when calling {{getFinalFireTime()}}. This happens if the property {{endTime}} is NULL.
The problem is in the following code, because you cannot pass a Null value to {{Calendar.setTime()}}
{code}
java.util.Calendar currCal = java.util.Calendar.getInstance();
currCal.setTime(this.endTime);
{code} |
Show » |
|