Skip to content

Commit

Permalink
Convert refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-cherednik committed Nov 5, 2024
1 parent 94a1006 commit 763710f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 100 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @since 04.11.2024
*/
@RequiredArgsConstructor(access = AccessLevel.PROTECTED)
public class DataOutputDecorator extends DataOutput {
public class BaseDataOutput extends DataOutput {

protected final DataOutput delegate;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @author Oleg Cherednik
* @since 04.11.2024
*/
public class ByteOrderDataOutput extends XxxByteOrderDataOutputDecorator {
public class ByteOrderDataOutput extends BaseDataOutput {

private final ByteOrderConverter byteOrderConverter;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @author Oleg Cherednik
* @since 04.11.2024
*/
public class ByteOrderDataOutputDecorator extends DataOutputDecorator {
public class ByteOrderDataOutputDecorator extends BaseDataOutput {

private final ByteOrderConverter byteOrderConverter;

Expand Down

This file was deleted.

0 comments on commit 763710f

Please sign in to comment.