You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2015/08/31 20:24:49 UTC

logging-log4j2 git commit: Remove no longer used org.apache.logging.log4j.core.config.builder.api.Assembler now that we reuse org.apache.logging.log4j.core.util.Builder.

Repository: logging-log4j2
Updated Branches:
  refs/heads/LOG4J2-952 997f808ec -> 051a98110


Remove no longer used
org.apache.logging.log4j.core.config.builder.api.Assembler<T> now that
we reuse org.apache.logging.log4j.core.util.Builder<T>.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/051a9811
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/051a9811
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/051a9811

Branch: refs/heads/LOG4J2-952
Commit: 051a98110e718cef6c6feefebdd890bce88a1d15
Parents: 997f808
Author: ggregory <gg...@apache.org>
Authored: Mon Aug 31 11:24:46 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Mon Aug 31 11:24:46 2015 -0700

----------------------------------------------------------------------
 .../core/config/builder/api/Assembler.java      | 37 --------------------
 1 file changed, 37 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/051a9811/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Assembler.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Assembler.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Assembler.java
deleted file mode 100644
index 74a4152..0000000
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Assembler.java
+++ /dev/null
@@ -1,37 +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.logging.log4j.core.config.builder.api;
-
-/**
- * Gathers information in preparation for creating components. These assemblers are primarily useful for
- * aggregating the information that will be used to create a Configuration.
- *
- * @param <T> the Component class this is a builder for.
- */
-public interface Assembler<T> {
-
-    /**
-     * Builds the plugin object after all configuration has been set. This will use default values for any
-     * unspecified attributes for the plugin.
-     *
-     * @return the configured plugin instance.
-     * @throws org.apache.logging.log4j.core.config.ConfigurationException if there was an error building the plugin
-     * object.
-     */
-    T assemble();
-}