You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2019/09/29 13:32:33 UTC

[isis] 01/02: ISIS-2086: removes unused method, is all.

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

danhaywood pushed a commit to branch ISIS-2086
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 591738393c24812ddbcb99a391799849aaef9949
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sun Sep 29 14:29:11 2019 +0100

    ISIS-2086: removes unused method, is all.
---
 .../property/command/CommandPropertiesConfiguration.java           | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/core/config/src/main/java/org/apache/isis/metamodel/facets/properties/property/command/CommandPropertiesConfiguration.java b/core/config/src/main/java/org/apache/isis/metamodel/facets/properties/property/command/CommandPropertiesConfiguration.java
index d727fe5..72b3b19 100644
--- a/core/config/src/main/java/org/apache/isis/metamodel/facets/properties/property/command/CommandPropertiesConfiguration.java
+++ b/core/config/src/main/java/org/apache/isis/metamodel/facets/properties/property/command/CommandPropertiesConfiguration.java
@@ -18,15 +18,8 @@
  */
 package org.apache.isis.metamodel.facets.properties.property.command;
 
-import org.apache.isis.config.IsisConfiguration;
-import org.apache.isis.config.IsisConfigurationLegacy;
-import org.apache.isis.metamodel.facets.object.domainobject.Util;
-
 public enum CommandPropertiesConfiguration {
     ALL,
     NONE;
 
-    public static CommandPropertiesConfiguration parse(final IsisConfigurationLegacy configurationLegacy, IsisConfiguration configuration) {
-        return configuration.getServices().getCommand().getProperties();
-    }
 }