You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2018/11/03 14:05:34 UTC

[sling-slingfeature-maven-plugin] branch master updated: Remove unused constants

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

cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 6a690e7  Remove unused constants
6a690e7 is described below

commit 6a690e7ef8543d604434bb08c1c9ad5301cd4bbc
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Sat Nov 3 15:05:26 2018 +0100

    Remove unused constants
---
 src/main/java/org/apache/sling/feature/maven/FeatureConstants.java | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/sling/feature/maven/FeatureConstants.java b/src/main/java/org/apache/sling/feature/maven/FeatureConstants.java
index f41a037..15279ac 100644
--- a/src/main/java/org/apache/sling/feature/maven/FeatureConstants.java
+++ b/src/main/java/org/apache/sling/feature/maven/FeatureConstants.java
@@ -17,9 +17,7 @@
 package org.apache.sling.feature.maven;
 
 public abstract class FeatureConstants {
-    public static final String PACKAGING_FEATURE = "slingosgifeature";
 
-    public static final String CLASSIFIER_FEATURE = "feature";
+    public static final String PACKAGING_FEATURE = "slingosgifeature";
 
-    public static final String CLASSIFIER_TEST_FEATURE = "testfeature";
 }