Remove redundant try/catch

This commit is contained in:
Anton Pastukhov 2024-11-26 20:46:00 +02:00
parent cd4d62d10a
commit 704a59bc41
1 changed files with 3 additions and 7 deletions

View File

@ -249,15 +249,11 @@ struct ObjectList(T) {
return _list[index];
}
/// get item by index. Returns null if item not found
inout(T) tryGet(int index) @safe inout nothrow {
try {
if (index < 0 || index >= _count) {
return null;
}
return _list[index];
} catch (Exception e) {
inout(T) tryGet(int index) @safe inout {
if (index < 0 || index >= _count) {
return null;
}
return _list[index];
}
/// get item by index
T opIndex(int index) @safe {