Skip to content

Commit

Permalink
bump version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jarnaiz committed Jun 26, 2015
1 parent ebcb32e commit e86b529
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This project provides a first API implementation, little optimized, but "complet
<dependency>
<groupId>com.upplication</groupId>
<artifactId>s3fs</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.upplication</groupId>
<artifactId>s3fs</artifactId>
<packaging>jar</packaging>
<version>1.0.1</version>
<version>1.0.2</version>
<name>s3fs</name>
<description>S3 filesystem provider for Java 7</description>
<url>https://github.com/Upplication/Amazon-S3-FileSystem-NIO2</url>
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/com/upplication/s3fs/S3Path.java
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,7 @@ public WatchKey register(WatchService watcher, WatchEvent.Kind<?>... events) thr
public Iterator<Path> iterator() {
ImmutableList.Builder<Path> builder = ImmutableList.builder();

for (Iterator<String> iterator = parts.iterator(); iterator.hasNext();) {
String part = iterator.next();
for (String part : parts) {
builder.add(new S3Path(fileSystem, null, ImmutableList.of(part)));
}

Expand Down

0 comments on commit e86b529

Please sign in to comment.