Jonny Borges
Committed by GitHub

Merge pull request #349 from gumbarros/patch-1

get_instance.dart redundant ternary
... ... @@ -227,11 +227,7 @@ class GetInstance {
FcBuilder builder = GetConfig._singl[newKey] as FcBuilder;
if (builder.permanent) {
(key == null)
? print(
'[GET] [$newKey] has been marked as permanent, SmartManagement is not authorized to delete it.')
: print(
'[GET] [$newKey] has been marked as permanent, SmartManagement is not authorized to delete it.');
print('[GET] [$newKey] has been marked as permanent, SmartManagement is not authorized to delete it.');
return false;
}
final i = builder.dependency;
... ...