mirror of https://github.com/buggins/dlangui.git
Remove redundant try/catch
This commit is contained in:
parent
a22f2aabd0
commit
986c1fc106
|
@ -249,15 +249,11 @@ struct ObjectList(T) {
|
||||||
return _list[index];
|
return _list[index];
|
||||||
}
|
}
|
||||||
/// get item by index. Returns null if item not found
|
/// get item by index. Returns null if item not found
|
||||||
inout(T) tryGet(int index) @safe inout nothrow {
|
inout(T) tryGet(int index) @safe inout {
|
||||||
try {
|
if (index < 0 || index >= _count) {
|
||||||
if (index < 0 || index >= _count) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return _list[index];
|
|
||||||
} catch (Exception e) {
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
return _list[index];
|
||||||
}
|
}
|
||||||
/// get item by index
|
/// get item by index
|
||||||
T opIndex(int index) @safe {
|
T opIndex(int index) @safe {
|
||||||
|
|
Loading…
Reference in New Issue