X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fio%2Fmime%2FJalviewMimeContentHandler.java;h=7d1b0f5cc52c09aebf07c7dd3ee7c1f1d5ab833b;hb=80238b0ded8d29f9f50399c51bc550bc1df9c426;hp=1b5965c397c67a18cf32bced9a643e50b89caa6c;hpb=b2f9a8d7bce642ff4011bc6d49e02bb0569fbb11;p=jalview.git diff --git a/src/jalview/ws/io/mime/JalviewMimeContentHandler.java b/src/jalview/ws/io/mime/JalviewMimeContentHandler.java index 1b5965c..7d1b0f5 100644 --- a/src/jalview/ws/io/mime/JalviewMimeContentHandler.java +++ b/src/jalview/ws/io/mime/JalviewMimeContentHandler.java @@ -1,19 +1,21 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.1) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.ws.io.mime; @@ -27,9 +29,9 @@ import java.util.ArrayList; import java.util.List; import org.apache.james.mime4j.MimeException; -import org.apache.james.mime4j.descriptor.BodyDescriptor; import org.apache.james.mime4j.parser.ContentHandler; -import org.apache.james.mime4j.parser.Field; +import org.apache.james.mime4j.stream.BodyDescriptor; +import org.apache.james.mime4j.stream.Field; /** * ContentHandler for parsing mime encoded messages into Jalview objects. TODO: @@ -69,7 +71,7 @@ public class JalviewMimeContentHandler implements ContentHandler /** * sources for data to be parsed */ - List dataItems = new ArrayList(); + List dataItems = new ArrayList<>(); @Override public void body(BodyDescriptor arg0, InputStream arg1) @@ -174,5 +176,4 @@ public class JalviewMimeContentHandler implements ContentHandler // TODO Auto-generated method stub return null; } - }