Skip to content

Commit e45b478

Browse files
committed
Docs
1 parent 6e005fe commit e45b478

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

convex-core/src/main/java/convex/core/cpos/Order.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ public boolean consensusEquals(Order b) {
346346

347347
@Override
348348
public boolean equals(ACell o) {
349-
if (o instanceof Order) return equals((Order)o);
349+
if (o instanceof Order other) return equals(other);
350350
return Cells.equalsGeneric(this, o);
351351
}
352352

convex-peer/src/main/java/convex/net/impl/netty/NettyServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
public class NettyServer extends AServer {
2929

30-
static final Logger log = LoggerFactory.getLogger(NettyServer.class.getName());
30+
static final Logger log = LoggerFactory.getLogger(NettyServer.class);
3131

3232
static EventLoopGroup bossGroup=null;
3333

0 commit comments

Comments
 (0)