Repository: incubator-samza Updated Branches: refs/heads/0.7.0 9242f5d88 -> 13f6a5302
SAMZA-294: Remove unused DataType class Project: http://git-wip-us.apache.org/repos/asf/incubator-samza/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza/commit/13f6a530 Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/13f6a530 Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/13f6a530 Branch: refs/heads/0.7.0 Commit: 13f6a5302a16dd5a9d655eab7b9b6ca7d134e99f Parents: 9242f5d Author: Jakob Homan <[email protected]> Authored: Wed Jun 18 10:59:13 2014 -0700 Committer: Jakob Homan <[email protected]> Committed: Wed Jun 18 10:59:13 2014 -0700 ---------------------------------------------------------------------- .../java/org/apache/samza/metrics/DataType.java | 34 -------------------- 1 file changed, 34 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/13f6a530/samza-api/src/main/java/org/apache/samza/metrics/DataType.java ---------------------------------------------------------------------- diff --git a/samza-api/src/main/java/org/apache/samza/metrics/DataType.java b/samza-api/src/main/java/org/apache/samza/metrics/DataType.java deleted file mode 100644 index dc490d4..0000000 --- a/samza-api/src/main/java/org/apache/samza/metrics/DataType.java +++ /dev/null @@ -1,34 +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.samza.metrics; - -public enum DataType { - DataLong("DataLong"), DataDouble("DataDouble"), DataString("DataString"); - - private final String str; - - private DataType(String str) { - this.str = str; - } - - public String toString() { - return str; - } -}
