Fix some build and compile warnings

This commit is contained in:
Johan Andrén 2017-03-15 13:42:10 +01:00
parent 3f0c23e2da
commit 39199b877a
5 changed files with 6 additions and 6 deletions

View file

@ -433,7 +433,7 @@ final class ActorMaterializerSettings private (
* this may cause an initial runtime overhead, but most of the time fusing is
* desirable since it reduces the number of Actors that are created.
*/
@deprecated(since = "2.5.0", message = "Turning off fusing is no longer possible with the traversal based materializer")
@deprecated("Turning off fusing is no longer possible with the traversal based materializer", since = "2.5.0")
def withAutoFusing(enable: Boolean): ActorMaterializerSettings =
if (enable == this.autoFusing) this
else copy(autoFusing = enable)