Skip to content

Commit

Permalink
java: Fix package in examples/java/
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Oct 6, 2022
1 parent de7d51a commit 69ab636
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.ortools.samples;
package com.google.ortools.java;

import com.google.ortools.Loader;
import com.google.ortools.constraintsolver.Assignment;
Expand Down
2 changes: 1 addition & 1 deletion examples/java/FlowExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.ortools.samples;
package com.google.ortools.java;

import com.google.ortools.Loader;
import com.google.ortools.graph.MaxFlow;
Expand Down
2 changes: 1 addition & 1 deletion examples/java/IntegerProgramming.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.ortools.samples;
package com.google.ortools.java;

import com.google.ortools.Loader;
import com.google.ortools.linearsolver.MPConstraint;
Expand Down
2 changes: 1 addition & 1 deletion examples/java/LinearAssignmentAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.ortools.samples;
package com.google.ortools.java;

import com.google.ortools.Loader;
import com.google.ortools.graph.LinearSumAssignment;
Expand Down
2 changes: 1 addition & 1 deletion examples/java/LinearProgramming.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.ortools.samples;
package com.google.ortools.java;

import com.google.ortools.Loader;
import com.google.ortools.linearsolver.MPConstraint;
Expand Down
2 changes: 1 addition & 1 deletion examples/java/RabbitsPheasants.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.ortools.samples;
package com.google.ortools.java;

import com.google.ortools.Loader;
import com.google.ortools.constraintsolver.ConstraintSolverParameters;
Expand Down
1 change: 1 addition & 0 deletions examples/java/RandomTsp.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.ortools.java;

import com.google.ortools.Loader;
Expand Down

0 comments on commit 69ab636

Please sign in to comment.