Skip to content

Commit

Permalink
break formatting to test
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed Apr 25, 2024
1 parent 6b7396b commit f01be9f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,15 @@ public enum CertificateUsage {
CA_CONSTRAINT(0), SERVICE_CERTIFICATE_CONSTRAINT(1), TRUST_ANCHOR_ASSERTION(2), DOMAIN_ISSUER_CERTIFICATE(3);

// just to trigger build
public final ULong code;
public final ULong code;

private CertificateUsage(int code) {
private CertificateUsage(int code)
{
this.code = ULong.valueOf(code);
}

public static CertificateUsage fromCode(int code) {
public
static CertificateUsage fromCode(int code) {
return fromCode(ULong.valueOf(code));
}

Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ Contributors:
<groupId>org.eclipse.leshan</groupId>
<artifactId>leshan</artifactId>
<version>2.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<packaging>pom


</packaging>

<name>leshan</name>
<description>An OMA Lightweight M2M (LWM2M) implementation in Java</description>
Expand Down

0 comments on commit f01be9f

Please sign in to comment.