You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by al...@apache.org on 2015/08/19 23:21:25 UTC

[51/62] [abbrv] incubator-brooklyn git commit: Delete deprecated GeneralPurposePolicy from core

Delete deprecated GeneralPurposePolicy from core

Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/35e7e68c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/35e7e68c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/35e7e68c

Branch: refs/heads/master
Commit: 35e7e68cddd4da3572d6b0f3d527a7b676c89714
Parents: 538324e
Author: Aled Sage <al...@gmail.com>
Authored: Wed Aug 19 16:46:31 2015 +0100
Committer: Aled Sage <al...@gmail.com>
Committed: Wed Aug 19 16:46:31 2015 +0100

----------------------------------------------------------------------
 .../policy/core/GeneralPurposePolicy.java       | 36 --------------------
 1 file changed, 36 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/35e7e68c/core/src/main/java/org/apache/brooklyn/policy/core/GeneralPurposePolicy.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/brooklyn/policy/core/GeneralPurposePolicy.java b/core/src/main/java/org/apache/brooklyn/policy/core/GeneralPurposePolicy.java
deleted file mode 100644
index eeb488d..0000000
--- a/core/src/main/java/org/apache/brooklyn/policy/core/GeneralPurposePolicy.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.brooklyn.policy.core;
-
-import java.util.Collections;
-import java.util.Map;
-
-/**
- * @deprecated since 0.7.0; will be either deleted or moved to tests
- */
-@Deprecated
-public class GeneralPurposePolicy extends AbstractPolicy {
-    public GeneralPurposePolicy() {
-        this(Collections.emptyMap());
-    }
-    public GeneralPurposePolicy(Map<?,?> properties) {
-        super(properties);
-    }
-}
-