Skip to content

Commit

Permalink
Fix compatibility of ArangoCursor#filter with Java 6
Browse files Browse the repository at this point in the history
  • Loading branch information
mpv1989 committed Sep 26, 2018
1 parent a3e98c3 commit 3abfaba
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

### Fixed

- fixed compatibility of `ArangoCursor#filter` with Java 6

## [5.0.1] - 2018-09-25

### Fixed
Expand Down
13 changes: 0 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,19 +121,6 @@
<target>1.6</target>
<compilerArgument></compilerArgument>
</configuration>
<executions>
<execution>
<id>test-compile</id>
<phase>process-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<source>1.6</source>
<target>1.7</target>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,9 @@ public T next() {
next = null;
return tmp;
}

@Override
public void remove() {
throw new UnsupportedOperationException();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,9 @@ public T next() {
return mapper.apply(iterator.next());
}

@Override
public void remove() {
throw new UnsupportedOperationException();
}

}

0 comments on commit 3abfaba

Please sign in to comment.