Repository: ignite Updated Branches: refs/heads/master b3dc33472 -> d473b507f
IGNITE-8690 Missed package-info for some packages - Fixes #4116. Signed-off-by: Ivan Rakov <[email protected]> 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 <[email protected]> Authored: Mon Jun 4 16:25:56 2018 +0300 Committer: Ivan Rakov <[email protected]> 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. + */ + +/** + * <!-- Package description. --> + * 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 <b>Zookeeper Discovery Spi</b> implementation classes. + */ +package org.apache.ignite.spi.discovery.zk.internal; \ No newline at end of file
