<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/lombok.git/test/transform/resource/messages-delombok/GetterOnMethodErrors2.java.messages, branch feat/memoize</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/lombok.git/'/>
<entry>
<title>Fixing issue #1201: Builder now supports defaults!</title>
<updated>2017-03-20T21:54:36+00:00</updated>
<author>
<name>Reinier Zwitserloot</name>
<email>reinier@zwitserloot.com</email>
</author>
<published>2017-03-20T21:54:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/lombok.git/commit/?id=bf54986e8a08d246877fae902c58dc41ca2f559b'/>
<id>bf54986e8a08d246877fae902c58dc41ca2f559b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed issue #778: problems with onX if the annotation to be added has named args.</title>
<updated>2017-03-07T00:12:24+00:00</updated>
<author>
<name>Reinier Zwitserloot</name>
<email>reinier@zwitserloot.com</email>
</author>
<published>2017-03-06T22:34:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/lombok.git/commit/?id=d05d03743316e45abfd0d00397999d7eb959eb64'/>
<id>d05d03743316e45abfd0d00397999d7eb959eb64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated unit tests to reflect new double-underscore default for onX. (Because single underscore generates warnings in javac8).</title>
<updated>2013-09-09T21:54:51+00:00</updated>
<author>
<name>Roel Spilker</name>
<email>r.spilker@gmail.com</email>
</author>
<published>2013-09-09T21:54:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/lombok.git/commit/?id=52d4c81a590f790de057653e7ffd091b6706ee34'/>
<id>52d4c81a590f790de057653e7ffd091b6706ee34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Only look at the line number for errors and warnings.</title>
<updated>2013-08-19T21:50:57+00:00</updated>
<author>
<name>Roel Spilker</name>
<email>r.spilker@gmail.com</email>
</author>
<published>2013-08-19T21:50:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/lombok.git/commit/?id=bad93ae677622c79883f658a53484d455e36ce9a'/>
<id>bad93ae677622c79883f658a53484d455e36ce9a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>replaced double underscore as new standard way of writing the dummy annotation for onX instead of single underscore, which emits warnings on javac8+.</title>
<updated>2013-08-12T21:13:11+00:00</updated>
<author>
<name>Reinier Zwitserloot</name>
<email>reinier@zwitserloot.com</email>
</author>
<published>2013-08-12T20:51:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/lombok.git/commit/?id=95cf815285ee736d3bc8119773139cb4fe0c1fb4'/>
<id>95cf815285ee736d3bc8119773139cb4fe0c1fb4</id>
<content type='text'>
Also made dollars and Xes legal in addition to underscores, in case double underscore disappears later too.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also made dollars and Xes legal in addition to underscores, in case double underscore disappears later too.
</pre>
</div>
</content>
</entry>
<entry>
<title>BIG commit:</title>
<updated>2013-02-11T21:34:48+00:00</updated>
<author>
<name>Reinier Zwitserloot</name>
<email>reinier@zwitserloot.com</email>
</author>
<published>2013-02-11T21:34:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/lombok.git/commit/?id=aafd83079a3000d3deb6e40a182849da2509fbfb'/>
<id>aafd83079a3000d3deb6e40a182849da2509fbfb</id>
<content type='text'>
 * re-introduction of onMethod/onConstructor/onParam
 * tests checking error/warnings rewritten to be more heuristic, in order to accomodate difference in messaging between java6 and java 7
 * Ability to eliminate java's own output of erroneous error messages (heh); i.e. those messages that are invalidated by lombok's actions. This mechanism is used for onMethod/onConstructor/onParam
 * First steps to unifying a billion setGeneratedBy calls into a single visitor traversal for eclipse' HandleGetter/Setter/Constructor/Wither
 * To simplify 'zooming in' the tests on just a few files, added an 'accept' mechanism.
 * Updated copyright headers of website to 2013.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * re-introduction of onMethod/onConstructor/onParam
 * tests checking error/warnings rewritten to be more heuristic, in order to accomodate difference in messaging between java6 and java 7
 * Ability to eliminate java's own output of erroneous error messages (heh); i.e. those messages that are invalidated by lombok's actions. This mechanism is used for onMethod/onConstructor/onParam
 * First steps to unifying a billion setGeneratedBy calls into a single visitor traversal for eclipse' HandleGetter/Setter/Constructor/Wither
 * To simplify 'zooming in' the tests on just a few files, added an 'accept' mechanism.
 * Updated copyright headers of website to 2013.
</pre>
</div>
</content>
</entry>
</feed>
