From commits-return-118538-archive-asf-public=cust-asf.ponee.io@ignite.apache.org Mon Jun 4 15:26:29 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id B0F53180636 for ; Mon, 4 Jun 2018 15:26:28 +0200 (CEST) Received: (qmail 40282 invoked by uid 500); 4 Jun 2018 13:26:27 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 40273 invoked by uid 99); 4 Jun 2018 13:26:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jun 2018 13:26:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8FA5BDFCBA; Mon, 4 Jun 2018 13:26:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: irakov@apache.org To: commits@ignite.apache.org Message-Id: <5860e39f52a44e1c80a0b7bf9ba4edb4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: ignite git commit: IGNITE-8690 Missed package-info for some packages - Fixes #4116. Date: Mon, 4 Jun 2018 13:26:27 +0000 (UTC) Repository: ignite Updated Branches: refs/heads/master b3dc33472 -> d473b507f IGNITE-8690 Missed package-info for some packages - Fixes #4116. Signed-off-by: Ivan Rakov Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/d473b507 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/d473b507 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/d473b507 Branch: refs/heads/master Commit: d473b507f04e2ec843c1da1066d8908e882396d7 Parents: b3dc334 Author: Pavel Kovalenko Authored: Mon Jun 4 16:25:56 2018 +0300 Committer: Ivan Rakov Committed: Mon Jun 4 16:25:56 2018 +0300 ---------------------------------------------------------------------- .../tcp/internal/package-info.java | 22 ++++++++++++++++++++ .../spi/discovery/zk/internal/package-info.java | 21 +++++++++++++++++++ 2 files changed, 43 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/d473b507/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/internal/package-info.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/internal/package-info.java b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/internal/package-info.java new file mode 100644 index 0000000..341c088 --- /dev/null +++ b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/internal/package-info.java @@ -0,0 +1,22 @@ +/* + * 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. + */ + +/** + * + * Contains connection health-checkers for TCP/IP-based implementation of communication SPI. + */ +package org.apache.ignite.spi.communication.tcp.internal; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/d473b507/modules/zookeeper/src/main/java/org/apache/ignite/spi/discovery/zk/internal/package-info.java ---------------------------------------------------------------------- diff --git a/modules/zookeeper/src/main/java/org/apache/ignite/spi/discovery/zk/internal/package-info.java b/modules/zookeeper/src/main/java/org/apache/ignite/spi/discovery/zk/internal/package-info.java new file mode 100644 index 0000000..b3ef799 --- /dev/null +++ b/modules/zookeeper/src/main/java/org/apache/ignite/spi/discovery/zk/internal/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. + */ + +/** + * Contains Zookeeper Discovery Spi implementation classes. + */ +package org.apache.ignite.spi.discovery.zk.internal; \ No newline at end of file