You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2018/07/07 15:51:42 UTC

[juneau] branch master updated: Remove unused class.

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

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a2564e  Remove unused class.
1a2564e is described below

commit 1a2564edfd764bd9f284b4676d532c84d4656937
Author: JamesBognar <ja...@apache.org>
AuthorDate: Sat Jul 7 11:51:23 2018 -0400

    Remove unused class.
---
 .../org/apache/juneau/transform/PojoSwapper.java   | 24 ----------------------
 1 file changed, 24 deletions(-)

diff --git a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/transform/PojoSwapper.java b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/transform/PojoSwapper.java
deleted file mode 100644
index 69e1582..0000000
--- a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/transform/PojoSwapper.java
+++ /dev/null
@@ -1,24 +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.juneau.transform;
-
-import org.apache.juneau.*;
-
-/**
- * TODO
- *
- */
-public interface PojoSwapper {
-
-	public <T> T swap(Object o, ClassMeta<T> toType);
-}