Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
*/
package com.querydsl.core;

import com.querydsl.core.annotations.Immutable;
import java.io.Serial;
import java.io.Serializable;
import java.util.List;
Expand All @@ -25,6 +26,7 @@
*
* @author tiwe
*/
@Immutable
public final class QueryModifiers implements Serializable {

@Serial private static final long serialVersionUID = 2934344588433680339L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
*/
package com.querydsl.sql;

import com.querydsl.core.annotations.Immutable;
import java.io.Serializable;
import java.util.Objects;

/** {@code SchemaAndTable} combines schema and table into a single value type */
@Immutable
public class SchemaAndTable implements Serializable {

private final String schema, table;
Expand Down
Loading