-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #366 from eed3si9n/wip/integration
Bump to latest modules + integrate ripples
- Loading branch information
Showing
118 changed files
with
4,525 additions
and
756 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
32 changes: 32 additions & 0 deletions
32
internal/compiler-interface/src/main/contraband-java/xsbti/api/Access.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,32 @@ | ||
/** | ||
* This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]]. | ||
*/ | ||
|
||
// DO NOT EDIT MANUALLY | ||
package xsbti.api; | ||
public abstract class Access implements java.io.Serializable { | ||
|
||
|
||
protected Access() { | ||
super(); | ||
|
||
} | ||
|
||
|
||
public boolean equals(Object obj) { | ||
if (this == obj) { | ||
return true; | ||
} else if (!(obj instanceof Access)) { | ||
return false; | ||
} else { | ||
Access o = (Access)obj; | ||
return true; | ||
} | ||
} | ||
public int hashCode() { | ||
return 37 * (17 + "xsbti.api.Access".hashCode()); | ||
} | ||
public String toString() { | ||
return "Access(" + ")"; | ||
} | ||
} |
Oops, something went wrong.