[GitHub] commons-rng pull request #7: Replace FindBugs with SpotBugs

2018-02-16 Thread mureinik
GitHub user mureinik opened a pull request: https://github.com/apache/commons-rng/pull/7 Replace FindBugs with SpotBugs As per the discussion in [1], FindBugs has been discontinued, and SpotBugs has taken its place. This patch updates the Commons RNG project to use SpotBugs

[GitHub] commons-collections pull request #21: Add VI[M] temporary files to .gitignor...

2017-03-17 Thread mureinik
GitHub user mureinik opened a pull request: https://github.com/apache/commons-collections/pull/21 Add VI[M] temporary files to .gitignore Add VI[M]'s temporary files to .gitignore to make it easier for contributors who want to use this editor. You can merge this pull re

[GitHub] commons-collections issue #21: Add VI[M] temporary files to .gitignore

2017-10-16 Thread mureinik
Github user mureinik commented on the issue: https://github.com/apache/commons-collections/pull/21 > @mureinik - Do you mind rebasing to master and re-opening this pull request? Sorry, missed this notification completely :-( I rebased my branch, but I don't thi

commons-lang pull request: Adding .gitignore to commons-lang

2013-08-24 Thread mureinik
GitHub user mureinik opened a pull request: https://github.com/apache/commons-lang/pull/8 Adding .gitignore to commons-lang Added .gitignore to the project in order to make working with git easier, and avoid accidentally commiting files that should not be commited. These

commons-lang pull request: Adding .gitignore to commons-lang

2013-09-03 Thread mureinik
Github user mureinik closed the pull request at: https://github.com/apache/commons-lang/pull/8 - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

commons-lang pull request: Hash code builder

2013-09-03 Thread mureinik
GitHub user mureinik opened a pull request: https://github.com/apache/commons-lang/pull/10 Hash code builder Solution for LANG-804: Redundant check for zero in HashCodeBuilder ctor You can merge this pull request into a Git repository by running: $ git pull https://github.com

commons-lang pull request: Hash code builder

2013-09-27 Thread mureinik
Github user mureinik closed the pull request at: https://github.com/apache/commons-lang/pull/10 - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

Re: [All][RNG] FindBugs discontinued

2018-02-16 Thread Allon Mureinik
The migration from FindBugs to SpotBugs seems to be trivial once we decide to go down that route: https://github.com/apache/commons-rng/pull/7 [Note that there are test case failures in the CI for this PR that are unrelated to the findbugs-spotbugs migration - they also seem to reproduce on master

Re: [All][RNG] FindBugs discontinued

2018-02-16 Thread Allon Mureinik
darn, missed one :-) Thanks Giles! On Sat, Feb 17, 2018 at 5:12 AM, Gilles wrote: > On Fri, 16 Feb 2018 21:12:39 +0200, Allon Mureinik wrote: > >> The migration from FindBugs to SpotBugs seems to be trivial once we decide >> to go down that route: >> https://github.com/a

Re: [LANG] travis build failures

2018-02-27 Thread Allon Mureinik
All the ArrayUtilsTest#testShuffleXYZ tests take an array, shuffle it, and assert that the result isn't equal to the original array. This is usually true, but there's a small chance that the shuffled array will be equal to the original array, and thus the test will fail. This chance is higher for t

Re: [LANG] travis build failures

2018-02-27 Thread Allon Mureinik
There will still be a chance, however infinitesimal, of a failure. :-) On Tue, Feb 27, 2018 at 9:02 PM, Gary Gregory wrote: > Why not make the array 1000 items long? > > Gary > > On Tue, Feb 27, 2018 at 10:31 AM, Allon Mureinik > wrote: > > > All the ArrayUtilsTes

Re: [LANG] travis build failures

2018-02-27 Thread Allon Mureinik
uffles? > > Gary > > On Tue, Feb 27, 2018, 13:18 Allon Mureinik wrote: > > > There will still be a chance, however infinitesimal, of a failure. :-) > > > > > > On Tue, Feb 27, 2018 at 9:02 PM, Gary Gregory > > wrote: > > > > > Why not make the

Re: Apache Rat plugin, license for new classes

2018-10-14 Thread Allon Mureinik
Can you link to that PR so we have something concrete to look at? On Sun, Oct 14, 2018 at 7:49 PM Aleksander Ściborek < aleksanderscibo...@gmail.com> wrote: > Hi, > During my first attempt to create pull request with 2 new classes (a single > utils class and a test class) I have encountered probl

[lang] Why have a HashSetvBitSetTest?

2017-02-25 Thread Allon Mureinik
Hi all, Building commons-lang locally made me notice HashSetvBitSetTest, which made me wonder why we need it as a unit test. I'm guessing it was originally used to support a design decision about which data structure to use. But having done it, we now have a relatively slow test (on my machine -

Re: [lang] JUnit imports (closes #247)

2017-03-08 Thread Allon Mureinik
ache.org/repos/asf/commons-lang/diff/c79e6fb8 > > > > Branch: refs/heads/master > > Commit: c79e6fb8f95bb07d2394221b29b75fcc016f4900 > > Parents: 98fa164 > > Author: Allon Mureinik > > Authored: Tue Feb 28 23:17:51 2017 +0200 > > Committer: pascalschum

Re: [LANG] Next release

2017-03-14 Thread Allon Mureinik
The recent commits 0ba25aa, 4fb393b and 15dcb42 buffed up the CI so several of these reports (javadoc, checkstyle, rat) are checked per commit, so reviewing the reports should be easier than previous verisons. If the project's maintainers can review it, I'd like to get PR #257 in before the releas

Re: [configuration] checkstyle fails build

2017-06-22 Thread Allon Mureinik
The root cause, IMHO, is having failValidation=false configured in the pom.xml. This way, when you introduce a new problem your only option to notice it is if you visually scan mvn's output. As evident by the current state of the build, not everyone notices these. A more robust approach would be to

Re: [configuration] checkstyle fails build

2017-06-23 Thread Allon Mureinik
On Fri, Jun 23, 2017 at 6:03 PM, Oliver Heger wrote: > > > Am 23.06.2017 um 08:58 schrieb Allon Mureinik: > > The root cause, IMHO, is having failValidation=false configured in the > > pom.xml. This way, when you introduce a new problem your only option to > > notice

Re: [configuration] checkstyle fails build

2017-06-23 Thread Allon Mureinik
; Gary > > > >> > >> Claude > >> > >> On Fri, Jun 23, 2017 at 4:03 PM, Oliver Heger < > >> oliver.he...@oliver-heger.de> > >> wrote: > >> > >> > > >> > > >> > Am 23.06.2017 um 08:58 schrieb Allon Mureini

Re: [lang] Applying IntelliJ IDEA refactorings

2017-07-05 Thread Allon Mureinik
I've submitted several such cleanups over the past couple of month, and for the most part, they've been well received. I think the key here is to improve the codebase when possible but to leave room to deviate from IntelliJ's norms when there's a good reason to. Perhaps annotating such places with

Re: Attaching Apache repository pushes to GitHub page

2017-08-03 Thread Allon Mureinik
Assuming you're using the same email to contribute to commons-numbers as you use for your GitHub profile, staring the Apache repository should do the trick. See also [1] for some other common pitfalls that you may have encountered [1] https://help.github.com/articles/why-are-my-contributions-not-s

Re: [MATH] Enforce run of checkstyle-maven-plugin in validate instead of site phase

2017-08-04 Thread Allon Mureinik
We had a similar discussion about Configuration. Personally, I'm all for enforcing checkstyle during the validate phase, but we couldn't reach a consensus about it there: http://www.mail-archive.com/dev@commons.apache.org/msg58573.html On Fri, Aug 4, 2017 at 7:16 PM, Karl-Philipp Richter wrote:

Re: [ALL] Automated requirements (e.g. CheckStyle)? (Was: [MATH] Enforce run [...])

2017-08-07 Thread Allon Mureinik
On Mon, Aug 7, 2017 at 12:16 PM, Gilles wrote: > Hello. > > On Fri, 4 Aug 2017 21:17:43 +0300, Allon Mureinik wrote: > >> We had a similar discussion about Configuration. >> >> Personally, I'm all for enforcing checkstyle during the validate phase, >> b

Re: [ALL] Automated requirements (e.g. CheckStyle)? (Was: [MATH] Enforce run [...])

2017-08-07 Thread Allon Mureinik
On Mon, Aug 7, 2017 at 2:36 PM, Gilles wrote: > On Mon, 7 Aug 2017 14:08:45 +0300, Allon Mureinik wrote: > >> On Mon, Aug 7, 2017 at 12:16 PM, Gilles >> wrote: >> >> Hello. >>> >>> On Fri, 4 Aug 2017 21:17:43 +0300, Allon Mureinik wrote: >>

Re: [lang] [LANG-1360] Add methods to ObjectUtils to get various forms of class names in a null-safe manner

2017-10-21 Thread Allon Mureinik
Hi guys, This patch break the CI on GitHub (the checkstyle check). It's pretty straight forward to fix [1], and if someone could merge it to unblock the CI, that would be great. TIA, Allon [1] https://github.com/apache/commons-lang/pull/302 On Sat, Oct 21, 2017 at 11:27 AM, Benedikt Ritter w

Re: [lang] [LANG-1360] Add methods to ObjectUtils to get various forms of class names in a null-safe manner

2017-10-21 Thread Allon Mureinik
On Sat, Oct 21, 2017 at 6:36 PM, Benedikt Ritter wrote: > > > > Am 21.10.2017 um 13:54 schrieb Allon Mureinik : > > > > Hi guys, > > > > This patch break the CI on GitHub (the checkstyle check). > > > > It's pretty straight forward to fix [1]