1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-05 08:05:24 +02:00

fix Bug 161979. Alternative to suggested patch that compiles with both Eclipse 3.2 and Eclipse 3.3.

This commit is contained in:
David McKnight 2006-10-24 15:22:38 +00:00
parent 97db4e79d7
commit 78711a3c9c

View file

@ -314,6 +314,10 @@ public class SystemEditionAction extends SystemBaseAction
{
throw new InvocationTargetException(e);
}
catch (Exception e) // TODO in Eclipse 3.3 this should be changed to IOException
{
throw new InvocationTargetException(e);
}
}
private IDocument getDocument(IFile file)