Potential violation of Law of Demeter (object not created locally)
例子:
public void sessionDestroyed(final HttpSessionEvent se) { final HttpSession session=se.getSession(); final String id=session.getId();//这行出的问题
}
我将如何修改?