Fixed bug that caused and exception on empty Strings
FEA: ItEr02S03MigracionZK5
This commit is contained in:
parent
d69fd6935c
commit
e2a3b7d1d8
1 changed files with 1 additions and 1 deletions
|
|
@ -586,7 +586,7 @@ public abstract class ChartFiller implements IChartFiller {
|
|||
*the application webpath
|
||||
* */
|
||||
private String adaptCallbackForTimePlot(String uri){
|
||||
return uri.substring(1);
|
||||
return ! uri.equals("") ? uri.substring(1) : uri;
|
||||
}
|
||||
@Override
|
||||
public void appendPlotinfo(Timeplot chart, Plotinfo plotinfo,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue