From cc2ada0b6cf8f484ce5b3c681fb7f6e146082d57 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Tue, 28 Aug 2012 16:59:30 +0900 Subject: [PATCH] Add missing license headers --- .../channel/socket/aio/AioChannelFinder.java | 15 +++++++++++++++ .../socket/aio/DefaultAioChannelFinder.java | 15 +++++++++++++++ .../socket/aio/UnsafeAioChannelFinder.java | 15 +++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/transport/src/main/java/io/netty/channel/socket/aio/AioChannelFinder.java b/transport/src/main/java/io/netty/channel/socket/aio/AioChannelFinder.java index cbd1ee4145..54d392e53e 100644 --- a/transport/src/main/java/io/netty/channel/socket/aio/AioChannelFinder.java +++ b/transport/src/main/java/io/netty/channel/socket/aio/AioChannelFinder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2012 The Netty Project + * + * The Netty Project 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 io.netty.channel.socket.aio; interface AioChannelFinder { diff --git a/transport/src/main/java/io/netty/channel/socket/aio/DefaultAioChannelFinder.java b/transport/src/main/java/io/netty/channel/socket/aio/DefaultAioChannelFinder.java index 7511707726..d5ad905200 100644 --- a/transport/src/main/java/io/netty/channel/socket/aio/DefaultAioChannelFinder.java +++ b/transport/src/main/java/io/netty/channel/socket/aio/DefaultAioChannelFinder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2012 The Netty Project + * + * The Netty Project 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 io.netty.channel.socket.aio; import java.lang.reflect.Field; diff --git a/transport/src/main/java/io/netty/channel/socket/aio/UnsafeAioChannelFinder.java b/transport/src/main/java/io/netty/channel/socket/aio/UnsafeAioChannelFinder.java index 5120aa5a8d..6693c3dc2b 100644 --- a/transport/src/main/java/io/netty/channel/socket/aio/UnsafeAioChannelFinder.java +++ b/transport/src/main/java/io/netty/channel/socket/aio/UnsafeAioChannelFinder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2012 The Netty Project + * + * The Netty Project 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 io.netty.channel.socket.aio; import java.lang.reflect.Field;