GitHub user adenes opened a pull request:
https://github.com/apache/flume/pull/195
FLUME-2957. Remove Guava from our public API
The only Guava class used in public API is the `ImmutableMap` in the
`org.apache.flume.Context`, `org.apache.flume.node.MaterializedConfiguration`
and `org.apache.flume.node.SimpleMaterializedConfiguration` classes.
This commit replaces these with `java.util.Map`.
Note: this is a breaking change as it modifies the return type of a method
on a public interface.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/adenes/flume FLUME-2957
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/flume/pull/195.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #195
----
commit 3232832bbfc18aa1baefa1bcd995f2dea75e857f
Author: Denes Arvay <denes@...>
Date: 2018-01-26T16:07:44Z
FLUME-2957. Remove Guava from our public API
The only Guava class used in public API is the ImmutableMap in the
org.apache.flume.Context, org.apache.flume.node.MaterializedConfiguration
and
org.apache.flume.node.SimpleMaterializedConfiguration classes.
This commit replaces these with java.util.Map.
----
---