-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🔥 Removed unused query * ⚡ Improved schema violation check * 🔥 Removed EdgeLabel from drivers * 🔥 Removed the rest of the enums * 🔥 Removed some more code * 💚 Fixing build
- Loading branch information
1 parent
d069098
commit d8d84bc
Showing
36 changed files
with
531 additions
and
925 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
16 changes: 0 additions & 16 deletions
16
plume/src/main/kotlin/io/github/plume/oss/domain/enums/DispatchType.kt
This file was deleted.
Oops, something went wrong.
61 changes: 0 additions & 61 deletions
61
plume/src/main/kotlin/io/github/plume/oss/domain/enums/EdgeLabel.kt
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
plume/src/main/kotlin/io/github/plume/oss/domain/enums/EvaluationStrategy.kt
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
plume/src/main/kotlin/io/github/plume/oss/domain/enums/ModifierType.kt
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
plume/src/main/kotlin/io/github/plume/oss/domain/enums/VertexBaseTrait.kt
This file was deleted.
Oops, something went wrong.
139 changes: 0 additions & 139 deletions
139
plume/src/main/kotlin/io/github/plume/oss/domain/enums/VertexLabel.kt
This file was deleted.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
plume/src/main/kotlin/io/github/plume/oss/domain/exceptions/PlumeSchemaViolationException.kt
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
package io.github.plume.oss.domain.exceptions | ||
|
||
import io.github.plume.oss.domain.enums.EdgeLabel | ||
import io.shiftleft.codepropertygraph.generated.nodes.NewNodeBuilder | ||
|
||
/** | ||
* Thrown when an invalid edge connection is attempted to be created between two [NewNodeBuilder]s. | ||
*/ | ||
class PlumeSchemaViolationException(fromV: NewNodeBuilder, toV: NewNodeBuilder, edgeLabel: EdgeLabel) : | ||
class PlumeSchemaViolationException(fromV: NewNodeBuilder, toV: NewNodeBuilder, edgeLabel: String) : | ||
RuntimeException("CPG schema violation adding a $edgeLabel edge from ${fromV.javaClass.simpleName} to ${toV.javaClass.simpleName}") |
Oops, something went wrong.