Re: Release BCEL 6.1?

2017-08-30 Thread Stephan Herrmann
Hi Benedikt, I may be too late for 6.1., but I just reallized that my patch & test in https://issues.apache.org/jira/browse/BCEL-267 has never received an answer. Would you mind having a quick look? thanks, Stephan On 30.08.2017 20:51, Benedikt Ritter wrote: Hello Andreas, Am 30.08.2017

Re: Release BCEL 6.1?

2017-08-30 Thread Benedikt Ritter
Hello Andreas, > Am 30.08.2017 um 11:23 schrieb Andreas Sewe : > > Hi Benedikt, > > you wrote: I’ll have a look into this and come back to you. Probably on Sunday since I’ll be on the train then and will have some time. >>> >>> sounds good. Thank you for

Re: [configuration] Creating a properties file

2017-08-30 Thread Oliver Heger
Hi Thomas, Am 30.08.2017 um 10:56 schrieb Thomas Mortagne: > Here is what I currently do: > > PropertiesBuilderParameters parameters = new > Parameters().properties(); > if (file.exists()) { > new Parameters().properties().setFile(file); > } >

Re: Release BCEL 6.1?

2017-08-30 Thread Andreas Sewe
Hi Benedikt, you wrote: >>> I’ll have a look into this and come back to you. Probably on Sunday since >>> I’ll be on the train then and will have some time. >> >> sounds good. Thank you for looking into this. > > Sorry, no internet on the train yesterday… Looking into this tonight :o) Any news

Re: [configuration] Creating a properties file

2017-08-30 Thread Thomas Mortagne
Here is what I currently do: PropertiesBuilderParameters parameters = new Parameters().properties(); if (file.exists()) { new Parameters().properties().setFile(file); } FileBasedConfigurationBuilder builder = new

[configuration] Creating a properties file

2017-08-30 Thread Thomas Mortagne
Hi, I trying to move from Commons Configuration 1.x to 2.1.1 and I cannot figure out how to do something that used to be obvious: creating a properties file that does not yet exist on the file system. In 1.x all I had to do is create a PropertiesConfiguration with a File, set a few properties