MultipartEntity.java (httpcomponents-client-4.5.6-src) | : | MultipartEntity.java (httpcomponents-client-4.5.7-src) | ||
---|---|---|---|---|
skipping to change at line 179 | skipping to change at line 179 | |||
} | } | |||
} | } | |||
@Override | @Override | |||
public InputStream getContent() throws IOException, UnsupportedOperationExce ption { | public InputStream getContent() throws IOException, UnsupportedOperationExce ption { | |||
throw new UnsupportedOperationException( | throw new UnsupportedOperationException( | |||
"Multipart form entity does not implement #getContent()"); | "Multipart form entity does not implement #getContent()"); | |||
} | } | |||
@Override | @Override | |||
public void writeTo(final OutputStream outstream) throws IOException { | public void writeTo(final OutputStream outStream) throws IOException { | |||
getEntity().writeTo(outstream); | getEntity().writeTo(outStream); | |||
} | } | |||
} | } | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |