You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by sm...@apache.org on 2016/10/23 16:07:45 UTC

incubator-streams git commit: STREAMS-434: Delete CustomDateTimeFormat which is not used anywhere, this closes apache/incubator-streams#317

Repository: incubator-streams
Updated Branches:
  refs/heads/master 1543dc8f6 -> ac90a22a3


STREAMS-434: Delete CustomDateTimeFormat which is not used anywhere, this closes apache/incubator-streams#317


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

Branch: refs/heads/master
Commit: ac90a22a34660b7b700e3f5d8c75d4629904fc77
Parents: 1543dc8
Author: smarthi <sm...@apache.org>
Authored: Sun Oct 23 12:07:30 2016 -0400
Committer: smarthi <sm...@apache.org>
Committed: Sun Oct 23 12:07:30 2016 -0400

----------------------------------------------------------------------
 .../streams/pojo/test/CustomDateTimeFormat.java | 32 --------------------
 1 file changed, 32 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/ac90a22a/streams-pojo/src/test/java/org/apache/streams/pojo/test/CustomDateTimeFormat.java
----------------------------------------------------------------------
diff --git a/streams-pojo/src/test/java/org/apache/streams/pojo/test/CustomDateTimeFormat.java b/streams-pojo/src/test/java/org/apache/streams/pojo/test/CustomDateTimeFormat.java
deleted file mode 100644
index 15bbaca..0000000
--- a/streams-pojo/src/test/java/org/apache/streams/pojo/test/CustomDateTimeFormat.java
+++ /dev/null
@@ -1,32 +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
- *
- *   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.streams.pojo.test;
-
-import org.apache.streams.jackson.StreamsDateTimeFormat;
-
-/**
- * Supporting class for {@link CustomDateTimeFormatTest}
- */
-public class CustomDateTimeFormat implements StreamsDateTimeFormat {
-
-    @Override
-    public String getFormat() {
-        return "EEE MMM dd HH:mm:ss Z yyyy";
-    }
-}