Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
fixed javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Synapticloop authored and Synapticloop committed Mar 7, 2016
1 parent a2a8864 commit db5d44c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import synapticloop.b2.response.B2FileResponse;
import synapticloop.b2.response.B2GetUploadUrlResponse;
import synapticloop.b2.response.B2ResponseHeaders;
import synapticloop.b2.util.ChecksumHelper;
import synapticloop.b2.util.URLEncoder;

/**
Expand Down Expand Up @@ -63,6 +62,7 @@ public class B2UploadFileRequest extends BaseB2Request {
* @param b2GetUploadUrlResponse the upload URL for this request
* @param fileName the name of the file
* @param file the file to upload
* @param sha1Checksum the sha1 checksum for the file
* @param fileInfo the file info map which are passed through as headers prefixed by "X-Bz-Info-"
*/
public B2UploadFileRequest(CloseableHttpClient client, B2AuthorizeAccountResponse b2AuthorizeAccountResponse,
Expand All @@ -80,6 +80,7 @@ public B2UploadFileRequest(CloseableHttpClient client, B2AuthorizeAccountRespons
* @param b2GetUploadUrlResponse the upload URL for this request
* @param fileName the name of the file
* @param file the file to upload
* @param sha1Checksum the sha1 checksum for the file
* @param mimeType the mimeType (optional, will default to 'b2/x-auto' which
* backblaze will attempt to determine automatically). The MIME type of
* the content of the file, which will be returned in the Content-Type
Expand All @@ -103,6 +104,7 @@ public B2UploadFileRequest(CloseableHttpClient client, B2AuthorizeAccountRespons
* @param b2GetUploadUrlResponse the upload URL for this request
* @param fileName the name of the file
* @param file the file to upload
* @param sha1Checksum the sha1 checksum for the file
*/
public B2UploadFileRequest(CloseableHttpClient client, B2AuthorizeAccountResponse b2AuthorizeAccountResponse,
B2GetUploadUrlResponse b2GetUploadUrlResponse, String fileName, File file, String sha1Checksum) {
Expand All @@ -119,6 +121,7 @@ public B2UploadFileRequest(CloseableHttpClient client, B2AuthorizeAccountRespons
* @param b2GetUploadUrlResponse the upload URL for this request
* @param fileName the name of the file
* @param file the file to upload
* @param sha1Checksum the sha1 checksum for the file
* @param mimeType the mimeType (optional, will default to 'b2/x-auto' which
* backblaze will attempt to determine automatically). The MIME type of
* the content of the file, which will be returned in the Content-Type
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/synapticloop/b2/response/BaseB2Response.java
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,6 @@ protected JSONArray readObjects(String key) {
* {@link BaseB2Response#readLong(String)}
* {@link BaseB2Response#readString(String)}
* {@link BaseB2Response#readObject(String)}
*
* @param LOGGER The logger to use
*/
@SuppressWarnings("rawtypes")
protected void warnOnMissedKeys() {
Expand Down

0 comments on commit db5d44c

Please sign in to comment.