Skip to content

Commit

Permalink
remove accidental change capture
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxcapades committed Nov 27, 2023
1 parent 2cd9eda commit bfb1347
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 100 deletions.
10 changes: 0 additions & 10 deletions src/main/kotlin/org/veupathdb/lib/s3/s34k/params/ExistsParams.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,4 @@ interface ExistsParams : RegionRequestParams {
* bucket or object exists in the S3 store.
*/
var callback: ((exists: Boolean) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,4 @@ interface BucketGetParams : RegionRequestParams {
* store if the target bucket exists, otherwise `null`.
*/
var callback: ((bucket: S3Bucket?) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,4 @@ interface BucketListParams : S3RequestParams {
* store.
*/
var callback: ((buckets: BucketList) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,4 @@ interface ObjectGetParams : RegionRequestParams {
* object exists, otherwise it will be passed a `null` value.
*/
var callback: ((handle: S3Object?) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,4 @@ interface ObjectListAllParams : RegionRequestParams {
* The callback will be passed an [ObjectList] value.
*/
var callback: ((objects: ObjectList) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,4 @@ interface ObjectListParams : RegionRequestParams {
* This callback will be passed a list of objects retrieved from the store.
*/
var callback: ((ObjectList) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,4 @@ interface ObjectOpenParams : RegionRequestParams {
* object does not exist, this callback will be passed a `null` value.
*/
var callback: ((StreamObject?) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,4 @@ interface ObjectStatParams : RegionRequestParams {
* This callback will be passed the metadata returned for the target object.
*/
var callback: ((ObjectMeta?) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,4 @@ interface SubPathListParams : RegionRequestParams {
* This callback will be passed a list of objects retrieved from the store.
*/
var callback: ((SubPathListing) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,4 @@ interface TagGetParams : RegionRequestParams {
* from the target.
*/
var callback: ((TagMap) -> Unit)?

/**
* Controls the number of retry attempts that will be made on an exception
* while reading from S3.
*
* Defaults to 1.
*
* @since v0.11.0
*/
var retries: Int
}

0 comments on commit bfb1347

Please sign in to comment.