You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FileInputStream created at line 3379 in uploadAttachment() is never closed. No try-with-resources, no finally block. The stream is passed to uploadAttachmentContent() which also does not close it. Fix: wrap in try-with-resources.
FileInputStream created at line 3379 in uploadAttachment() is never closed. No try-with-resources, no finally block. The stream is passed to uploadAttachmentContent() which also does not close it. Fix: wrap in try-with-resources.