Hello, I was going to try to contribute but the Unit Tests fail because of line separator.
Unix line separator is \n
Window line separator is \r\n
For instance CyclicDependencyException uses System.getProperty("line.separator") or %n to generate error messages, but CyclicDependencyExceptionTest check result with \n.
If you're OK, I can do the fix myself and open a PR.
I think I may fix it by using \n everywhere because Windows understand it perfectly. So the code won't be platform-dependent.
Hello, I was going to try to contribute but the Unit Tests fail because of line separator.
Unix line separator is
\nWindow line separator is
\r\nFor instance
CyclicDependencyExceptionusesSystem.getProperty("line.separator")or%nto generate error messages, butCyclicDependencyExceptionTestcheck result with\n.If you're OK, I can do the fix myself and open a PR.
I think I may fix it by using
\neverywhere because Windows understand it perfectly. So the code won't be platform-dependent.