Skip to content

Commit

Permalink
Accept regenerated pages
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Nov 28, 2024
1 parent b3126df commit d5d6206
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 74 deletions.
36 changes: 18 additions & 18 deletions docs/recipes/ai/timefold/solver/migration/v8/nullablerecipe.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ This recipe is composed of more than one recipe. If you want to customize the se

<Tabs groupId="recipeType">
<TabItem value="recipe-list" label="Recipe List" >
* [Change method name](../../../../../java/changemethodname)
* methodPattern: `ai.timefold.solver.core.api.score.stream.uni.UniConstraintStream ifNotExistsOtherIncludingNullVars(..)`
* newMethodName: `ifNotExistsOtherIncludingUnassigned`
* [Change method name](../../../../../java/changemethodname)
* methodPattern: `ai.timefold.solver.core.api.score.stream.tri.TriConstraintStream ifNotExistsIncludingNullVars(..)`
* newMethodName: `ifNotExistsIncludingUnassigned`
* [Change method name](../../../../../java/changemethodname)
* methodPattern: `ai.timefold.solver.core.api.score.stream.quad.QuadConstraintStream ifExistsIncludingNullVars(..)`
* newMethodName: `ifExistsIncludingUnassigned`
* [Change method name](../../../../../java/changemethodname)
* methodPattern: `ai.timefold.solver.core.api.score.stream.tri.TriConstraintStream ifExistsIncludingNullVars(..)`
* newMethodName: `ifExistsIncludingUnassigned`
Expand All @@ -51,15 +60,6 @@ This recipe is composed of more than one recipe. If you want to customize the se
* [Change method name](../../../../../java/changemethodname)
* methodPattern: `ai.timefold.solver.core.api.score.stream.bi.BiConstraintStream ifExistsIncludingNullVars(..)`
* newMethodName: `ifExistsIncludingUnassigned`
* [Change method name](../../../../../java/changemethodname)
* methodPattern: `ai.timefold.solver.core.api.score.stream.uni.UniConstraintStream ifNotExistsOtherIncludingNullVars(..)`
* newMethodName: `ifNotExistsOtherIncludingUnassigned`
* [Change method name](../../../../../java/changemethodname)
* methodPattern: `ai.timefold.solver.core.api.score.stream.tri.TriConstraintStream ifNotExistsIncludingNullVars(..)`
* newMethodName: `ifNotExistsIncludingUnassigned`
* [Change method name](../../../../../java/changemethodname)
* methodPattern: `ai.timefold.solver.core.api.score.stream.quad.QuadConstraintStream ifExistsIncludingNullVars(..)`
* newMethodName: `ifExistsIncludingUnassigned`
* [Change annotation attribute name](../../../../../java/changeannotationattributename)
* annotationType: `ai.timefold.solver.core.api.domain.variable.PlanningVariable`
* oldAttributeName: `nullable`
Expand All @@ -76,6 +76,15 @@ name: ai.timefold.solver.migration.v8.NullableRecipe
displayName: PlanningVariable's `nullable` is newly called `unassignedValues`
description: Removes references to null vars and replace them with unassigned values.
recipeList:
- org.openrewrite.java.ChangeMethodName:
methodPattern: ai.timefold.solver.core.api.score.stream.uni.UniConstraintStream ifNotExistsOtherIncludingNullVars(..)
newMethodName: ifNotExistsOtherIncludingUnassigned
- org.openrewrite.java.ChangeMethodName:
methodPattern: ai.timefold.solver.core.api.score.stream.tri.TriConstraintStream ifNotExistsIncludingNullVars(..)
newMethodName: ifNotExistsIncludingUnassigned
- org.openrewrite.java.ChangeMethodName:
methodPattern: ai.timefold.solver.core.api.score.stream.quad.QuadConstraintStream ifExistsIncludingNullVars(..)
newMethodName: ifExistsIncludingUnassigned
- org.openrewrite.java.ChangeMethodName:
methodPattern: ai.timefold.solver.core.api.score.stream.tri.TriConstraintStream ifExistsIncludingNullVars(..)
newMethodName: ifExistsIncludingUnassigned
Expand All @@ -100,15 +109,6 @@ recipeList:
- org.openrewrite.java.ChangeMethodName:
methodPattern: ai.timefold.solver.core.api.score.stream.bi.BiConstraintStream ifExistsIncludingNullVars(..)
newMethodName: ifExistsIncludingUnassigned
- org.openrewrite.java.ChangeMethodName:
methodPattern: ai.timefold.solver.core.api.score.stream.uni.UniConstraintStream ifNotExistsOtherIncludingNullVars(..)
newMethodName: ifNotExistsOtherIncludingUnassigned
- org.openrewrite.java.ChangeMethodName:
methodPattern: ai.timefold.solver.core.api.score.stream.tri.TriConstraintStream ifNotExistsIncludingNullVars(..)
newMethodName: ifNotExistsIncludingUnassigned
- org.openrewrite.java.ChangeMethodName:
methodPattern: ai.timefold.solver.core.api.score.stream.quad.QuadConstraintStream ifExistsIncludingNullVars(..)
newMethodName: ifExistsIncludingUnassigned
- org.openrewrite.java.ChangeAnnotationAttributeName:
annotationType: ai.timefold.solver.core.api.domain.variable.PlanningVariable
oldAttributeName: nullable
Expand Down
Loading

0 comments on commit d5d6206

Please sign in to comment.