You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by ju...@apache.org on 2015/06/15 19:02:47 UTC

incubator-reef git commit: [REEF-378] Removed `CommonClientConfigurationModule`

Repository: incubator-reef
Updated Branches:
  refs/heads/master 75a2af245 -> 1aaf62d15


[REEF-378] Removed `CommonClientConfigurationModule`

JIRA:
  [REEF-378](https://issues.apache.org/jira/browse/REEF-378)

Pull Request:
  This closes #219

Author:    Markus Weimer <we...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/1aaf62d1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/1aaf62d1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/1aaf62d1

Branch: refs/heads/master
Commit: 1aaf62d15aeb1adc62277107854422f13a3b0172
Parents: 75a2af2
Author: Markus Weimer <we...@apache.org>
Authored: Mon Jun 15 09:14:09 2015 -0700
Committer: Julia Wang <jw...@yahoo.com>
Committed: Mon Jun 15 10:00:45 2015 -0700

----------------------------------------------------------------------
 .../client/CommonClientConfigurationModule.java | 31 --------------------
 1 file changed, 31 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/1aaf62d1/lang/java/reef-common/src/main/java/org/apache/reef/runtime/common/client/CommonClientConfigurationModule.java
----------------------------------------------------------------------
diff --git a/lang/java/reef-common/src/main/java/org/apache/reef/runtime/common/client/CommonClientConfigurationModule.java b/lang/java/reef-common/src/main/java/org/apache/reef/runtime/common/client/CommonClientConfigurationModule.java
deleted file mode 100644
index 4ab54b9..0000000
--- a/lang/java/reef-common/src/main/java/org/apache/reef/runtime/common/client/CommonClientConfigurationModule.java
+++ /dev/null
@@ -1,31 +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.reef.runtime.common.client;
-
-import org.apache.reef.tang.formats.ConfigurationModule;
-import org.apache.reef.tang.formats.ConfigurationModuleBuilder;
-
-/**
- * @deprecated this class was never used.
- */
-@Deprecated
-public class CommonClientConfigurationModule extends ConfigurationModuleBuilder {
-  public final static ConfigurationModule CONF = new CommonClientConfigurationModule()
-      .build();
-}