Skip to content

Commit

Permalink
fix(code-gen/java): fix interface name collision
Browse files Browse the repository at this point in the history
  • Loading branch information
sruehl committed Aug 30, 2024
1 parent 822101b commit d3eff01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.apache.plc4x.java.spi.generation.ReadBuffer;
import org.apache.plc4x.java.spi.generation.WithReaderArgs;

public interface DataReader<T> extends ByteOrderAware, PositionAware, ContextReader {
public interface DataReader<T> extends ByteOrderAware, PositionMover, ContextReader {

T read(String logicalName, WithReaderArgs... readerArgs) throws ParseException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package org.apache.plc4x.java.spi.codegen.io;

public interface PositionAware {
public interface PositionMover {
int getPos();

void setPos(int position);
Expand Down

0 comments on commit d3eff01

Please sign in to comment.