[ 
https://issues.apache.org/jira/browse/IO-729?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary D. Gregory updated IO-729:
-------------------------------
    Comment: was deleted

(was: [~Spoor]

I do not get an IAE when I run (git master):

{code:java}
    @Test
    public void testTryWithResourcesThrows() throws IOException {
        try (Reader newReader = new BrokenReader()) {
            newReader.read();
        }
    }
{code}
 
Do you have a test case that throws a IAE?

 )

> BrokenReader, BrokenWriter, BrokenInputStream, BrokenOutputStream can cause 
> IllegalArgumentException in combination with try-with-resources
> -------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: IO-729
>                 URL: https://issues.apache.org/jira/browse/IO-729
>             Project: Commons IO
>          Issue Type: Bug
>          Components: Streams/Writers
>    Affects Versions: 2.8.0
>            Reporter: Rob Spoor
>            Priority: Minor
>
> The following little code snippet can cause an IllegalArgumentException with 
> message "Self-suppression not permitted":
> {code}        try (Writer writer = new BrokenWriter()) {
>             writer.write('a');
>         }{code}
> The try-with-resources mechanism will try to add the exception thrown from 
> {{close}} as suppress exception to the exception thrown from {{write}}. Since 
> those are the same, an exception is thrown. From the source of 
> java.lang.Throwable:
> {code}    public final synchronized void addSuppressed(Throwable exception) {
>         if (exception == this)
>             throw new IllegalArgumentException(SELF_SUPPRESSION_MESSAGE, 
> exception);{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to