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

Commit ee2056e

Browse files
committed
Merge pull request #4 from synapticloop/iterate-merge
Iterate merge back into master
2 parents afb3391 + 2b4681d commit ee2056e

File tree

55 files changed

+2348
-1257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2348
-1257
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ gradle-app.setting
1515
### Eclipse ###
1616
*.pydevproject
1717
.metadata
18-
.gradle
1918
bin/
2019
tmp/
2120
*.tmp

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ group = 'synapticloop'
1212
archivesBaseName = 'backblaze-b2-java-api'
1313
description = """An api for backblaze b2 storage in java"""
1414

15-
version = 'v1.1.4'
15+
version = 'v1.2.0'
1616

1717
description = """backblaze-b2-java-api"""
1818

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
package synapticloop.b2;
22

3+
/*
4+
* Copyright (c) 2016 synapticloop.
5+
*
6+
* All rights reserved.
7+
*
8+
* This code may contain contributions from other parties which, where
9+
* applicable, will be listed in the default build file for the project
10+
* ~and/or~ in a file named CONTRIBUTORS.txt in the root of the project.
11+
*
12+
* This source code and any derived binaries are covered by the terms and
13+
* conditions of the Licence agreement ("the Licence"). You may not use this
14+
* source code or any derived binaries except in compliance with the Licence.
15+
* A copy of the Licence is available in the file named LICENSE.txt shipped with
16+
* this source code or binaries.
17+
*/
18+
319
/**
420
* The action for an associated file, either 'hide' or 'upload', "upload" means
521
* a file that was uploaded to B2 Cloud Storage. "hide" means a file version
@@ -11,17 +27,6 @@
1127
* @author synapticloop
1228
*/
1329
public enum Action {
14-
HIDE("hide"),
15-
UPLOAD("upload");
16-
17-
private final String actionType;
18-
19-
Action(String actionType) {
20-
this.actionType = actionType;
21-
}
22-
23-
@Override
24-
public String toString() {
25-
return(actionType);
26-
}
30+
hide,
31+
upload
2732
}

0 commit comments

Comments
 (0)