This commit is contained in:
Saurabh Agrawal 2020-06-05 02:14:22 +05:30
Родитель a7d8fb6476
Коммит c099307cf6
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -28,11 +28,12 @@ public class EventProperties {
if (name == null || !Utils.validatePropertyName(name))
throw new IllegalArgumentException("name is null or invalid");
mStorage = new EventPropertiesStorage();
if (!setName(name))
throw new IllegalArgumentException("name is invalid");
setLevel(diagnosticLevel);
mStorage = new EventPropertiesStorage();
}
/**