240241242243244245246247
interceptors.clear(); } private List<Interceptor> getSortedInterceptorsByPrecedence() { List<Interceptor> result = new ArrayList<Interceptor>(interceptors.values()); Collections.sort(result, new InterceptorPrecedenceComparator()); return result; }