Skip to content

Commit

Permalink
(objectionary#1185) - Qulice fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoss committed Sep 8, 2022
1 parent 498275d commit ace6a62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eo-runtime/src/main/java/EOorg/EOeolang/EObytes$EOor.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* BYTES.OR.
*
* @since 1.0
* @checkstyle TypeNameCheck (5 lines)
* @checkstyle TypeNameCheck (15 lines)
* @todo #1184 This object is almost identical to
* EOand & EOxor. Extract method for converting Phy[]
* to Bytes[] to Param. And replace duplicated
Expand Down
2 changes: 1 addition & 1 deletion eo-runtime/src/main/java/org/eolang/Bytes.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public interface Bytes extends Data<byte[]> {
* @param bytes Bytes.
* @return Phi object.
*/
public static Phi toPhi(final Bytes bytes) {
static Phi toPhi(final Bytes bytes) {
final Phi object = new EObytes(Phi.Φ);
object.attr("Δ").put(new Data.Value<>(bytes.take()));
return new PhConst(object);
Expand Down

0 comments on commit ace6a62

Please sign in to comment.