Skip to content

Commit

Permalink
remove LogTerm
Browse files Browse the repository at this point in the history
  • Loading branch information
vssekorin committed Jun 19, 2017
1 parent faa19f7 commit 4d8ede2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 158 deletions.
44 changes: 0 additions & 44 deletions src/main/java/org/cactoos/LogTerm.java

This file was deleted.

6 changes: 3 additions & 3 deletions src/main/java/org/cactoos/func/False.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
package org.cactoos.func;

import org.cactoos.LogTerm;
import org.cactoos.Scalar;

/**
* Logical false.
Expand All @@ -32,9 +32,9 @@
*
* @author Vseslav Sekorin (vssekorin@gmail.com)
* @version $Id$
* @since 0.5
* @since 0.7
*/
public final class False implements LogTerm {
public final class False implements Scalar<Boolean> {

@Override
public Boolean asValue() throws Exception {
Expand Down
57 changes: 0 additions & 57 deletions src/main/java/org/cactoos/func/ScalarAsLogTerm.java

This file was deleted.

6 changes: 3 additions & 3 deletions src/main/java/org/cactoos/func/True.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
package org.cactoos.func;

import org.cactoos.LogTerm;
import org.cactoos.Scalar;

/**
* Logical truth.
Expand All @@ -32,9 +32,9 @@
*
* @author Vseslav Sekorin (vssekorin@gmail.com)
* @version $Id$
* @since 0.5
* @since 0.7
*/
public final class True implements LogTerm {
public final class True implements Scalar<Boolean> {

@Override
public Boolean asValue() throws Exception {
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/cactoos/func/FalseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*
* @author Vseslav Sekorin (vssekorin@gmail.com)
* @version $Id$
* @since 0.5
* @since 0.7
* @checkstyle JavadocMethodCheck (500 lines)
*/
public final class FalseTest {
Expand Down
49 changes: 0 additions & 49 deletions src/test/java/org/cactoos/func/ScalarAsLogTermTest.java

This file was deleted.

2 changes: 1 addition & 1 deletion src/test/java/org/cactoos/func/TrueTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*
* @author Vseslav Sekorin (vssekorin@gmail.com)
* @version $Id$
* @since 0.5
* @since 0.7
* @checkstyle JavadocMethodCheck (500 lines)
*/
public final class TrueTest {
Expand Down

0 comments on commit 4d8ede2

Please sign in to comment.