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
2 changes: 1 addition & 1 deletion src/main/java/com/smartsheet/utils/ConfigHolder.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* A holder of specific configuration properties for the current application.
* Any such properties are injected into this holder.
*/
public class ConfigHolder {
public final class ConfigHolder {

private static final ConfigHolder singleton = new ConfigHolder();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/smartsheet/utils/ErrorHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* An application-level error handler.
*/
public class ErrorHandler {
public final class ErrorHandler {

private ErrorHandler() {
// private constructor because this is a singleton helper class, not intended to be instantiated
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/smartsheet/utils/FileUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* Utilities for file operations.
*/
public class FileUtils {
public final class FileUtils {

private static final int ZIP_BUFFER_SIZE = 64*1024; // 64K

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/smartsheet/utils/HttpUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
/**
* Utilities for HTTP operations.
*/
public class HttpUtils {
public final class HttpUtils {

private static final String CHARSET = "UTF-8";
private static final String ACCEPT_JSON_HEADER = "application/json; charset=" + CHARSET.toLowerCase();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/smartsheet/utils/ProgressWatcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* A Progress Watcher which receives status and error notifications, publishing
* them to the console.
*/
public class ProgressWatcher {
public final class ProgressWatcher {

private static final String SMARTSHEET_BACKUP_ERROR_LOG_PREFIX = "smartsheet-backup-error-log_";
private static final String SMARTSHEET_BACKUP_ERROR_LOG_EXTENSION = ".log";
Expand Down