Skip to content

Commit 5c16509

Browse files
committed
fix old comments
1 parent 65ba1eb commit 5c16509

2 files changed

Lines changed: 1 addition & 16 deletions

File tree

eo-runtime/src/main/java/org/eolang/Dataized.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@ public byte[] take() {
8383
raw.addAll(ex.messages());
8484
Collections.reverse(raw);
8585
final Phi enc = ex.enclosure();
86-
System.out.println("____________________________+");
87-
System.out.println("enc.forma() = " + enc.forma());
88-
System.out.println("____________________________+");
89-
//if ("go.to.token.jump".equals(enc.forma())) {
90-
//if ("go.to.token.jump".equals(enc.forma()) || String.format("%s.go.to.token.jump", PhPackage.GLOBAL).equals(enc.forma())) {
9186
if (enc.forma().endsWith("go.to.token.jump")) {
9287
throw new EOerror.ExError(enc);
9388
}

eo-runtime/src/test/java/org/eolang/DataizedTest.java

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,10 @@
2222
* Test case for {@link Dataized}.
2323
*
2424
* @since 0.22
25-
* @todo #4538:30min Enable the test {@link DataizedTest#doesNotLogGoToTokenJump}.
26-
* The test was disabled because we've moved EO objects from default package 'org.eolang'
27-
* to Q, but java classes are placed in 'org.eolang' java package. That's why the method
28-
* {@link PhDefault#forma()} and {@link PhSafe#forma()} started to work incorrectly and
29-
* show 'org.eolang'. Need to fix these methods, make sure they work as expected and enable
30-
* the test.
31-
* @todo #4538:30min Enable the test {@link DataizedTest#logsAllLocationsWithPhSafe()}.
32-
* The test was disabled because we've moved EO objects from default package 'org.eolang'
33-
* to Q. This somehow affected {@link PhSafe} and {@link PhDefault} classes.
34-
* Need to fix it and enable the test
3525
*/
3626
@Execution(ExecutionMode.SAME_THREAD)
3727
final class DataizedTest {
38-
//@Disabled
28+
3929
@Test
4030
@SuppressWarnings({"PMD.UnitTestContainsTooManyAsserts", "PMD.UnnecessaryLocalRule"})
4131
void logsAllLocationsWithPhSafe() {

0 commit comments

Comments
 (0)