Is it widely agreed that it is necessary to require a return statement on a one line property getter?
var session: AVCaptureSession { get { return layer.session } }
Or could we follow the convention for any other close and get rid of it? For me it seems redundant; the word `get` literally precedes the closure.