Skip to content

Commit

Permalink
FSS-153 #time 20m Prepared files for the 2.4.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lordgero committed Jun 10, 2016
1 parent 9c7c788 commit b7c8304
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion droid4me/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.3
2.4.4
2 changes: 1 addition & 1 deletion droid4me/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<artifactId>droid4me</artifactId>
<name>droid4me</name>
<version>2.4.3</version>
<version>2.4.4</version>
<packaging>jar</packaging>
<description>droid4me is a framework library dedicated to the development of Android applications.</description>
<url>https://github.com/smartnsoft/droid4me</url>
Expand Down
6 changes: 3 additions & 3 deletions droid4me/release.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#release configuration
#Tue Jan 26 12:03:08 CET 2016
scm.tagNameFormat=@{project.artifactId}-@{project.version}
scm.tag=droid4me-2.4.3
scm.tag=droid4me-2.4.4
project.scm.com.smartnsoft\:droid4me.developerConnection=scm\:git\:[email protected]\:smartnsoft/droid4me.git
pushChanges=true
scm.url=scm\:git\:[email protected]\:smartnsoft/droid4me.git
Expand All @@ -11,8 +11,8 @@ project.scm.com.smartnsoft\:droid4me.url=https\://github.com/smartnsoft/droid4me
remoteTagging=true
scm.commentPrefix=[maven-release-plugin]
project.scm.com.smartnsoft\:droid4me.connection=scm\:git\:https\://github.com/smartnsoft/droid4me.git
project.dev.com.smartnsoft\:droid4me=2.4.3
project.rel.com.smartnsoft\:droid4me=2.4.3
project.dev.com.smartnsoft\:droid4me=2.4.4
project.rel.com.smartnsoft\:droid4me=2.4.4
exec.additionalArguments=-P nexus
exec.snapshotReleasePluginAllowed=false
completedPhase=end-release
7 changes: 6 additions & 1 deletion droid4me/src/com/smartnsoft/droid4me/log/LoggerWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ public static void configure(LoggerFactory.LoggerConfigurator loggerConfigurator
{
synchronized (LoggerWrapper.instances)
{
for (Entry<String, LoggerWrapper> entry : LoggerWrapper.instances.entrySet())
/**
* We do this because of concurrent acces on the list
* It could cause massive crashs when logging
*/
final Set<Entry<String, LoggerWrapper>> entries = new HashSet<Entry<String, LoggerWrapper>>(LoggerWrapper.instances.entrySet());
for (Entry<String, LoggerWrapper> entry : entries)
{
final LoggerWrapper loggerWrapper = entry.getValue();
loggerWrapper.logger = loggerConfigurator.getLogger(entry.getKey());
Expand Down

0 comments on commit b7c8304

Please sign in to comment.