Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-11 | don't warn about some unused fields/variables | Vlad Dumitrescu | |
2014-09-11 | handle warnings about potential null pointers | Vlad Dumitrescu | |
2014-09-11 | keep all method parameters final | Vlad Dumitrescu | |
2014-09-11 | renamed method parameters hiding fields | Vlad Dumitrescu | |
2014-09-11 | add 'break' statements to make compiler happy | Vlad Dumitrescu | |
2014-09-11 | remove warnings from OtpMD5 | Vlad Dumitrescu | |
2014-09-11 | rename OtpNode.flags to connFlags | Vlad Dumitrescu | |
was colliding to AbstractNode.flags | |||
2014-09-11 | rename OtpNode.Acceptor.port to acceptorPort | Vlad Dumitrescu | |
was colliding with OtpLocalNode.port | |||
2014-09-11 | rename field 'self' to 'localNode' | Vlad Dumitrescu | |
field 'OtpLocalNode self' was colliding with 'OtpSelf self' in OtpConnection | |||
2014-09-11 | mark deprecated unused private constructor | Vlad Dumitrescu | |
2014-09-11 | simplify 'if' statements | Vlad Dumitrescu | |
2014-09-11 | remove warnings: @Override, switch fall-through | Vlad Dumitrescu | |
2014-09-11 | make serialVersionUID fields private | Vlad Dumitrescu | |
2014-09-11 | remove unnecessary syntax (casts) | Vlad Dumitrescu | |
2014-09-11 | remove unused variables | Vlad Dumitrescu | |
2014-09-11 | removed unnecessary semicolons, imports, labels | Vlad Dumitrescu | |
2014-09-11 | remove unnecessary null pointer checks | Vlad Dumitrescu | |
2014-09-11 | remove unnecessary Cloneable and Serializable | Vlad Dumitrescu | |
2014-09-10 | let Java compiler output all warnings | Vlad Dumitrescu | |
2014-08-25 | Merge branch 'vladdu/jinterface_fun_equals' into maint | Bruce Yinhe | |
OTP-12121 * vladdu/jinterface_fun_equals: jinterface: fix bug in equality for OtpErlangFun | |||
2014-07-21 | jinterface: fix bug in equality for OtpErlangFun | Vlad Dumitrescu | |
Arrays (here: md5 and freeVars) must not be compared with equals, which is broken. | |||
2014-07-16 | Include the cause when raising a new IOException | Garret Smith | |
2014-07-09 | Merge branch 'nox/fix-javadoc' into maint | Bruce Yinhe | |
OTP-12050 * nox/fix-javadoc: Fix a few javadoc errors | |||
2014-06-08 | Fix a few javadoc errors | Anthony Ramine | |
Reported-by: Boris Mühmer | |||
2014-06-02 | jinterface: OtpInputStream exceptions show useless value | Vlad Dumitrescu | |
Arrays have no meaningful toString method, but one must use Arrays.toString instead. The meaningless value would look for example like "[C@16f0472", instead of "[2,4]". | |||
2014-04-07 | Update release notes | Erlang/OTP | |
2014-03-20 | Bump versions and ensure that all are "normal" versions | Rickard Green | |
Ensure all are "normal" versions according to the new version scheme introduced in OTP 17.0 | |||
2014-03-14 | erts: Add distribution capability flag for maps DFLAG_MAP_TAG | Sverker Eriksson | |
This is just a preparation to allow detection of older nodes that do not understand maps (R16 and older). | |||
2014-03-14 | erts: Change external format for maps | Sverker Eriksson | |
to be: 116,Arity, K1,V1,K2,V2,...,Kn,Vn instead of: 116,Arity, K1,K2,...,Kn, V1,V2,....,Vn We think this will be better for future internal map structures like HAMT. Would be bad if we need to iterate twice over HAMT in term_to_binary, one for keys and one for values. | |||
2014-02-13 | jinterface: Fix jinterface_SUITE | Björn-Egil Dahlberg | |
Let Maps be tested in the suite. | |||
2014-02-12 | jinterface: update user's guide with maps | Vlad Dumitrescu | |
2014-02-11 | jinterface: implement support for maps | Vlad Dumitrescu | |
The API and implementation are simplistic, like for lists and tuples, using arrays and without any connection to java.util.Map. | |||
2014-01-16 | jinterface: Fix unicode bug in test code | Sverker Eriksson | |
2013-08-08 | Merge branch 'maint' | Lukas Larsson | |
* maint: Add smoke tests | |||
2013-08-05 | Add smoke tests | Lukas Larsson | |
Smoke tests are meant to verify that a build of erlang has been successfull. | |||
2013-05-02 | Merge branch 'maint' | Siri Hansen | |
2013-04-22 | [jinterface] Extend timetrap timers in nc_SUITE and jinterface_SUITE | Siri Hansen | |
2013-04-22 | [jinterface] Set max heap size for jvm when running echo_server | Siri Hansen | |
The test cases nc_SUITE:decompress_roundtrip and nc_SUITE:compress_roundtrip fails on some machines with OutOfMemoryException. This commit sets the max heap size for the jvm to 256M in nc_SUITE in order to get around this. | |||
2013-04-22 | [jinterface] Clean up hanging java nodes after each test case | Siri Hansen | |
2013-04-19 | Convert XML files to UTF-8 | Hans Bolinder | |
2013-04-19 | Remove the "coding: utf-8" comment from all Erlang source files | Hans Bolinder | |
2013-03-05 | [jinterface] Kill process between tests to avoid consequential error | Siri Hansen | |
In some cases when a test case fails, the erl_link_server process (which is spawned by many test cases in jinterface_SUITE) does not terminate. This causes the next test case to fail with a badarg as it tries to register a new process with the same name. To avoid this, erl_link_server, if it exists, is now killed in end_per_testcase. Also, some compiler warnings are removed from jitu.erl. | |||
2013-03-04 | [jinterface] Make tests handle space in path on windows | Siri Hansen | |
Add quotes around classpath on windows. | |||
2013-02-25 | Prepare releaseOTP_R16B | Erlang/OTP | |
2013-02-22 | Update copyright years | Björn-Egil Dahlberg | |
2013-02-13 | Merge branch 'nk/jinterface_dont_compress_if_size_increased/OTP-10822' | Fredrik Gustafsson | |
* nk/jinterface_dont_compress_if_size_increased/OTP-10822: jinterface, OtpOutputStream: add a write_compressed(object, level) method jinterface: fix a memory leak jinterface: new limited OutputStream implementation without the need to resize jinterface: don't return compressed external term if bigger than uncompressed jinterface: don't compress small erlang terms < 5 bytes jinterface, OtpOutputStream: properly override the three write() methods to ensure our growth strategy jinterface: fix typo in error message if encoding fails jinterface: don't need another FilterOutputStream wrapper | |||
2013-02-12 | Merge branch 'vd/jinterface_windows_cookie/OTP-10821' | Fredrik Gustafsson | |
* vd/jinterface_windows_cookie/OTP-10821: jinterface: fix finding cookie file on windows | |||
2013-02-11 | Bumped version number | Fredrik Gustafsson | |
2013-02-04 | jinterface, OtpOutputStream: add a write_compressed(object, level) method | Nico Kruber | |
Now that we use an own deflater, we can also allow the user to specify the compression level as in Erlang's term_to_binary/2. | |||
2013-02-04 | jinterface: fix a memory leak | Nico Kruber | |
after the first try to compress the value with a fixed buffer size, the deflater must be closed so that memory can be (instantly) reused |