You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 09:25:41 UTC

[sling-org-apache-sling-commons-osgi] 15/19: SLING-5041 make Order public

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to annotated tag org.apache.sling.commons.osgi-2.4.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-osgi.git

commit f4565ec905f677689e7fcd003bd180074067c457
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Sun Dec 27 13:01:46 2015 +0000

    SLING-5041 make Order public
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/commons/osgi@1721810 13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/sling/commons/osgi/Order.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/commons/osgi/Order.java b/src/main/java/org/apache/sling/commons/osgi/Order.java
index d70d872..d247230 100644
--- a/src/main/java/org/apache/sling/commons/osgi/Order.java
+++ b/src/main/java/org/apache/sling/commons/osgi/Order.java
@@ -23,7 +23,7 @@ package org.apache.sling.commons.osgi;
  * or {@link RankedServices}. Either {@link #ASCENDING} meaning services with lowest service ranking first or 
  * {@link #DESCENDING} meaning services with highest service ranking first.
  */
-enum Order {
+public enum Order {
     ASCENDING(-1, 1),
     DESCENDING(1, -1);
 

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.