You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by GitBox <gi...@apache.org> on 2018/11/12 15:55:47 UTC

[GitHub] bosschaert closed pull request #6: SLING-8099 - eliminating NPE condition

bosschaert closed pull request #6: SLING-8099 - eliminating NPE condition
URL: https://github.com/apache/sling-org-apache-sling-feature-extension-content/pull/6
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/src/main/java/org/apache/sling/feature/extension/content/ContentOrderMergeProcessor.java b/src/main/java/org/apache/sling/feature/extension/content/ContentOrderMergeProcessor.java
index 9289e4c..82ad7db 100644
--- a/src/main/java/org/apache/sling/feature/extension/content/ContentOrderMergeProcessor.java
+++ b/src/main/java/org/apache/sling/feature/extension/content/ContentOrderMergeProcessor.java
@@ -30,7 +30,7 @@
     public static final String DEFAULT_CONTENT_START_ORDER = "default.content.startorder";
 
     private void processFeature(Feature feature, Extension extension) {
-        if (feature == null) {
+        if (feature == null || extension == null) {
             return;
         }
         String defaultOrder = feature.getVariables().get(DEFAULT_CONTENT_START_ORDER);


 

----------------------------------------------------------------
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