2c1a81f448
Control flow statements like return, break or continue are considered unsafe in finally blocks, as they take precendence over any control flow statement in the try and catch blocks, which may be unexpected. This isn't the case here as the statement in the finally block is the only one, but we can just as well avoid the finally block altogether and use a regular return statement. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/606