Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(build): warnings because of FileFormatSettings models #168

Merged
merged 1 commit into from
Jul 26, 2023
Merged
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
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class AdocFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class AndroidFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class ArbFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class ChromeFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class DitaFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class DocxFileFormatSettings extends FileFormatSettings {
private Boolean cleanTagsAggressively;
private Boolean translateHiddenText;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class FJSFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode
public class FileFormatSettings {
private String exportPattern;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class FmHtmlFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class FmMdFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class HtmlFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class IdmlFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

import com.crowdin.client.core.model.JsonFileType;
import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class JsonFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class MacOSXFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class MadcapFlsnpFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class MdFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.List;

@Data
@EqualsAndHashCode(callSuper = true)
public class MdxV1FileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class MediaWikiFileFormatSettings extends FileFormatSettings {
private Long srxStorageId;
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class MifFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class OtherFileFormatSettings extends FileFormatSettings {

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
import com.crowdin.client.core.model.EscapeQuotesMode;
import com.crowdin.client.core.model.EscapeSpecialCharsMode;
import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class PropertiesFileFormatSettings extends FileFormatSettings {
private EscapeQuotesMode escapeQuotes;
private EscapeSpecialCharsMode escapeSpecialCharacters;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class ReactIntlFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class TxtFileFormatSettings extends FileFormatSettings {
private Long srxStorageId;
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class WebXmlFileFormatSettings extends FileFormatSettings {
private Boolean contentSegmentation;
private Long srxStorageId;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package com.crowdin.client.projectsgroups.model;

import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.List;

@Data
@EqualsAndHashCode(callSuper = true)
public class XmlFileFormatSettings extends FileFormatSettings {
private Boolean translateContent;
private Boolean translateAttributes;
Expand Down