| author | Shawn F. Cook | 2011-06-10 18:57:37 (EDT) |
|---|---|---|
| committer | Ryan D. Brooks | 2011-06-10 18:57:37 (EDT) |
| commit | bf75f71ec74cd3e6771f7b6769460a8655fd0a1e (patch) (side-by-side diff) | |
| tree | 7a7cc8b75bdabc12110aeb4698a5b4f55a3e6a31 | |
| parent | a3c3a6627070de0da987309e0c1b97cf3ff7b3b5 (diff) | |
| download | org.eclipse.osee-bf75f71ec74cd3e6771f7b6769460a8655fd0a1e.zip org.eclipse.osee-bf75f71ec74cd3e6771f7b6769460a8655fd0a1e.tar.gz org.eclipse.osee-bf75f71ec74cd3e6771f7b6769460a8655fd0a1e.tar.bz2 | |
refinement[bgz_349095]: MailUtils.getOutputStream should throw UnsupportedOperationException
| -rw-r--r-- | plugins/org.eclipse.osee.mail/src/org/eclipse/osee/mail/MailUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.mail/src/org/eclipse/osee/mail/MailUtils.java b/plugins/org.eclipse.osee.mail/src/org/eclipse/osee/mail/MailUtils.java index 8546b65..c85a34c 100644 --- a/plugins/org.eclipse.osee.mail/src/org/eclipse/osee/mail/MailUtils.java +++ b/plugins/org.eclipse.osee.mail/src/org/eclipse/osee/mail/MailUtils.java @@ -121,7 +121,7 @@ public final class MailUtils { @Override public OutputStream getOutputStream() { - return null; + throw new UnsupportedOperationException("OutputStream is not available for this source"); } @Override |

