Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
BUGFIX. Boolean and String type was represented with same integer.
Browse files Browse the repository at this point in the history
  • Loading branch information
lsolova committed Mar 4, 2012
1 parent 371157e commit 5df81aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@

<groupId>org.masukomi</groupId>
<artifactId>aspirin</artifactId>
<version>0.10.01</version>
<version>0.10.02</version>
<packaging>jar</packaging>
<name>Aspirin</name>
<description>Aspirin is an embeddable send-only SMTP server.</description>
Expand Down
Expand Up @@ -521,10 +521,10 @@ private void updateMailSession() {

private class Parameter {

public static final int TYPE_STRING = 0;
public static final int TYPE_INTEGER = 1;
public static final int TYPE_LONG = 2;
public static final int TYPE_BOOLEAN = 0;
public static final int TYPE_STRING = 0;
public static final int TYPE_INTEGER = 1;
public static final int TYPE_LONG = 2;
public static final int TYPE_BOOLEAN = 3;

private String name;
private int type;
Expand Down

0 comments on commit 5df81aa

Please sign in to comment.