This is an automated email from the ASF dual-hosted git repository.
nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git
The following commit(s) were added to refs/heads/master by this push:
new 89b96d2ff Lucene.Net.Util.SeedUtils: Added missing license header
89b96d2ff is described below
commit 89b96d2ff9552fae6bbc8e82bb3484753f486fe4
Author: Shad Storhaug <[email protected]>
AuthorDate: Thu Oct 24 22:22:15 2024 +0700
Lucene.Net.Util.SeedUtils: Added missing license header
---
.../Support/Util/SeedUtils.cs | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/src/Lucene.Net.TestFramework/Support/Util/SeedUtils.cs
b/src/Lucene.Net.TestFramework/Support/Util/SeedUtils.cs
index 5da49989b..c4a051339 100644
--- a/src/Lucene.Net.TestFramework/Support/Util/SeedUtils.cs
+++ b/src/Lucene.Net.TestFramework/Support/Util/SeedUtils.cs
@@ -7,6 +7,25 @@ using System.Threading.Tasks;
namespace Lucene.Net.Util
{
+ /*
+ * 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.
+ */
+
/// <summary>
/// Utilities for parsing and formatting random seeds.
/// </summary>