From 018df31da8b6b5beeb767c90d7ef2a784eca354a Mon Sep 17 00:00:00 2001 From: Mike McCandless Date: Tue, 3 Jan 2017 05:31:56 -0500 Subject: [PATCH] LUCENE-7603: add package-info.java for new package --- .../lucene/util/graph/package-info.java | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lucene/core/src/java/org/apache/lucene/util/graph/package-info.java diff --git a/lucene/core/src/java/org/apache/lucene/util/graph/package-info.java b/lucene/core/src/java/org/apache/lucene/util/graph/package-info.java new file mode 100644 index 00000000000..bbc9b6a6ed9 --- /dev/null +++ b/lucene/core/src/java/org/apache/lucene/util/graph/package-info.java @@ -0,0 +1,21 @@ +/* + * 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. + */ + +/** + * Utility classes for working with token streams as graphs. + */ +package org.apache.lucene.util.graph;