r804 changes the class BufferedOutputFile to an interface with BufferedOutputFileImpl as its implementation.
This means that if plugin code currently does something like:
- Code: Select all
BufferedOutputFile bo;
bo = new BufferedOutputFile(params);
it should (from 1.40.0 on) be changed to:
- Code: Select all
BufferedOutputFile bo;
bo = new BufferedOutputFileImpl(params);
As shown in the example, the type can remain the same, only instantiation needs to be changed. Searching for "BufferedOutputFile(" in your code should quickly reveal all code that needs changing.
