dropbox / djinni

A tool for generating cross-language type declarations and interface bindings.
Apache License 2.0
2.88k stars 488 forks source link

Fix deprecation warning when running the build script #416

Closed wpurdy2 closed 5 years ago

wpurdy2 commented 5 years ago

The following build warning is emitted when running src/build:

src/build.sbt:20: warning: method seq in trait BuildExtra is deprecated: In build.sbt files, this call can be removed. In other cases, this can usually be replaced by Seq. seq(SbtStartScript.startScriptForClassesSettings: _*)

The call cannot be removed without breaking the build script, but changing "seq" to "Seq" seems to do the trick.

Running make does not change to any of the existing test or example files. All test cases pass.