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];
|
||||
}
|
||||
/// 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 {
|
||||
|
|
Loading…
Reference in New Issue