Skip to content

Commit

Permalink
FSS-153 #time 30m Cleaned-up the code. Fixed potential issue with the…
Browse files Browse the repository at this point in the history
… pom file
  • Loading branch information
ludovicroland committed Aug 22, 2016
1 parent 9f50ab1 commit ffc4202
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions droid4me/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.smartnsoft</groupId>
<artifactId>distribution</artifactId>
<version>1.1</version>
</parent>

<groupId>com.smartnsoft</groupId>
<artifactId>droid4me</artifactId>
<name>droid4me</name>
<version>2.4.7</version>
Expand Down Expand Up @@ -406,6 +401,12 @@
<id>bintray-smartnsoft-maven</id>
<url>https://api.bintray.com/maven/smartnsoft/maven/droid4me/;publish=1</url>
</repository>
<snapshotRepository>
<id>deployment</id>
<name>Internal Releases SNAPSHOT</name>
<url>
http://developer.smartnsoft.com:8081/nexus/content/repositories/snapshots/
</url>
</snapshotRepository>
</distributionManagement>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public LayoutInflater getLayoutInflater()
@Override
public Object getSystemService(String name)
{
if (Context.LAYOUT_INFLATER_SERVICE.equals(name) && getWindow() != null)
if (Context.LAYOUT_INFLATER_SERVICE.equals(name) == true && getWindow() != null)
{
return droid4mizer.getSystemService(name, getWindow().getLayoutInflater());
}
Expand Down

0 comments on commit ffc4202

Please sign in to comment.