This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit e60062d24a0d4c41cdd0772e8db9c58b58546b16 Author: Benoit Tellier <[email protected]> AuthorDate: Fri Nov 8 10:35:25 2019 +0700 [REFACTORING] StringBuilderChannel class is not used --- .../james/mailbox/store/StringBuilderChannel.java | 54 ---------------------- 1 file changed, 54 deletions(-) diff --git a/mailbox/store/src/test/java/org/apache/james/mailbox/store/StringBuilderChannel.java b/mailbox/store/src/test/java/org/apache/james/mailbox/store/StringBuilderChannel.java deleted file mode 100644 index 218c00c..0000000 --- a/mailbox/store/src/test/java/org/apache/james/mailbox/store/StringBuilderChannel.java +++ /dev/null @@ -1,54 +0,0 @@ -/**************************************************************** - * 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 org.apache.james.mailbox.store; - -import java.io.IOException; -import java.nio.ByteBuffer; -import java.nio.channels.WritableByteChannel; -import java.nio.charset.Charset; - -public class StringBuilderChannel implements WritableByteChannel { - - private static final Charset ASCII = Charset.forName("US-ASCII"); - - public final StringBuilder builder = new StringBuilder(1024); - - public boolean isClosed = false; - - @Override - public int write(ByteBuffer src) throws IOException { - final int result = src.limit() - src.position(); - builder.append(ASCII.decode(src)); - return result; - } - - @Override - public void close() throws IOException { - isClosed = true; - } - - @Override - public boolean isOpen() { - return !isClosed; - } - - public String toString() { - return builder.toString(); - } -} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
