-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude block body changes from oracle tests
- Loading branch information
Showing
11 changed files
with
52 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/main/java/org/codetracker/change/block/BlockBodyChange.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.codetracker.change.block; | ||
|
||
public class BlockBodyChange extends BlockChange { | ||
|
||
public BlockBodyChange(Type type) { | ||
super(type); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/java/org/codetracker/change/block/ElseBlockBodyAdded.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.codetracker.change.block; | ||
|
||
import org.codetracker.change.Change; | ||
|
||
public class ElseBlockBodyAdded extends BlockBodyChange { | ||
public ElseBlockBodyAdded() { | ||
super(Change.Type.ELSE_BLOCK_BODY_ADDED); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "Else Block Body Added"; | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/org/codetracker/change/block/ElseBlockBodyRemoved.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.codetracker.change.block; | ||
|
||
import org.codetracker.change.Change; | ||
|
||
public class ElseBlockBodyRemoved extends BlockBodyChange { | ||
public ElseBlockBodyRemoved() { | ||
super(Change.Type.ELSE_BLOCK_BODY_REMOVED); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "Else Block Body Removed"; | ||
} | ||
} |
14 changes: 0 additions & 14 deletions
14
src/main/java/org/codetracker/change/block/ElseBodyBlockAdded.java
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/main/java/org/codetracker/change/block/ElseBodyBlockRemoved.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters