Skip to content

Commit

Permalink
objectionary#3728 without global constant
Browse files Browse the repository at this point in the history
  • Loading branch information
Suban05 committed Feb 13, 2025
1 parent 7d0ec65 commit 7f9f9d6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions eo-runtime/src/main/java/org/eolang/Dataized.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ public byte[] take() {
raw.addAll(ex.messages());
Collections.reverse(raw);
final Phi enc = ex.enclosure();
if (String.format("%s.org.eolang.go.to.token.jump", PhPackage.GLOBAL)
.equals(enc.forma())) {
if ("org.eolang.go.to.token.jump".equals(enc.forma())) {
throw new EOerror.ExError(enc);
}
if (String.format("%s.org.eolang.string", PhPackage.GLOBAL).equals(enc.forma())) {
Expand Down
1 change: 0 additions & 1 deletion eo-runtime/src/main/java/org/eolang/PhSafe.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ public String locator() {
public String forma() {
return String.join(
".",
PhPackage.GLOBAL,
this.getClass().getPackageName(),
this.oname
);
Expand Down

0 comments on commit 7f9f9d6

Please sign in to comment.