You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by GitBox <gi...@apache.org> on 2018/05/07 21:52:29 UTC

[GitHub] reta commented on a change in pull request #407: [CXF-7716] Reduce StringBuilders and other performance changes.

reta commented on a change in pull request #407: [CXF-7716] Reduce StringBuilders and other performance changes.
URL: https://github.com/apache/cxf/pull/407#discussion_r186562512
 
 

 ##########
 File path: rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/JAXRSUtils.java
 ##########
 @@ -1508,11 +1509,40 @@ public static boolean matchMimeTypes(MediaType requestContentType,
                 }
             }
         }
-
         return new ArrayList<>(supportedMimeTypeList);
+    }
+
+    public static boolean doMimeTypesIntersect(List<MediaType> requiredMediaTypes, List<MediaType> userMediaTypes) {
+        for (MediaType requiredType : requiredMediaTypes) {
 
 Review comment:
   I would vote for own class, what do you think?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services