Rena Tsantouli 2009-05-19 11:35:07 +00:00
parent a7525a090d
commit 6cdecf366f
1 changed files with 4 additions and 1 deletions

View File

@ -166,7 +166,10 @@ public class ASLSession{
*/
public String getScopeName()
{
return scope.toString();
if (scope != null)
return scope.toString();
else
return null;
}
/**