Fixed using in Lucene.Net.Search.TopTermsRewrite
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/5501d2ec Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/5501d2ec Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/5501d2ec Branch: refs/heads/master Commit: 5501d2ecb654e4330aa654362597dbce5bd6b214 Parents: 54e0b9c Author: Shad Storhaug <[email protected]> Authored: Sat Apr 29 12:06:07 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Mon May 1 04:45:07 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net/Search/TopTermsRewrite.cs | 32 +++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/5501d2ec/src/Lucene.Net/Search/TopTermsRewrite.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Search/TopTermsRewrite.cs b/src/Lucene.Net/Search/TopTermsRewrite.cs index 01c8898..8f58ca5 100644 --- a/src/Lucene.Net/Search/TopTermsRewrite.cs +++ b/src/Lucene.Net/Search/TopTermsRewrite.cs @@ -2,26 +2,26 @@ using Lucene.Net.Support; using System; using System.Collections.Generic; using System.Diagnostics; +using System.Linq; namespace Lucene.Net.Search { - using System.Linq; /* -* 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. -*/ + * 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. + */ using ArrayUtil = Lucene.Net.Util.ArrayUtil; using BytesRef = Lucene.Net.Util.BytesRef;
