diff --git a/src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java b/src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
index f4f23717d..cc34b6ec9 100644
--- a/src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
+++ b/src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
@@ -1016,12 +1016,6 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
/** The key of the configuration. e.g. 3.0 */
String THUMBNAIL_HTML_IMAGE_MAX_ASPECT_RATIO = "thumbnail.html.image.max.aspect.ratio";
- /** The key of the configuration. e.g. 1200 */
- String THUMBNAIL_HTML_IMAGE_WINDOW_WIDTH = "thumbnail.html.image.window.width";
-
- /** The key of the configuration. e.g. 800 */
- String THUMBNAIL_HTML_IMAGE_WINDOW_HEIGHT = "thumbnail.html.image.window.height";
-
/** The key of the configuration. e.g. 100 */
String THUMBNAIL_HTML_IMAGE_THUMBNAIL_WIDTH = "thumbnail.html.image.thumbnail.width";
@@ -4725,36 +4719,6 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
*/
java.math.BigDecimal getThumbnailHtmlImageMaxAspectRatioAsDecimal();
- /**
- * Get the value for the key 'thumbnail.html.image.window.width'.
- * The value is, e.g. 1200
- * @return The value of found property. (NotNull: if not found, exception but basically no way)
- */
- String getThumbnailHtmlImageWindowWidth();
-
- /**
- * Get the value for the key 'thumbnail.html.image.window.width' as {@link Integer}.
- * The value is, e.g. 1200
- * @return The value of found property. (NotNull: if not found, exception but basically no way)
- * @throws NumberFormatException When the property is not integer.
- */
- Integer getThumbnailHtmlImageWindowWidthAsInteger();
-
- /**
- * Get the value for the key 'thumbnail.html.image.window.height'.
- * The value is, e.g. 800
- * @return The value of found property. (NotNull: if not found, exception but basically no way)
- */
- String getThumbnailHtmlImageWindowHeight();
-
- /**
- * Get the value for the key 'thumbnail.html.image.window.height' as {@link Integer}.
- * The value is, e.g. 800
- * @return The value of found property. (NotNull: if not found, exception but basically no way)
- * @throws NumberFormatException When the property is not integer.
- */
- Integer getThumbnailHtmlImageWindowHeightAsInteger();
-
/**
* Get the value for the key 'thumbnail.html.image.thumbnail.width'.
* The value is, e.g. 100
@@ -7664,22 +7628,6 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
return getAsDecimal(FessConfig.THUMBNAIL_HTML_IMAGE_MAX_ASPECT_RATIO);
}
- public String getThumbnailHtmlImageWindowWidth() {
- return get(FessConfig.THUMBNAIL_HTML_IMAGE_WINDOW_WIDTH);
- }
-
- public Integer getThumbnailHtmlImageWindowWidthAsInteger() {
- return getAsInteger(FessConfig.THUMBNAIL_HTML_IMAGE_WINDOW_WIDTH);
- }
-
- public String getThumbnailHtmlImageWindowHeight() {
- return get(FessConfig.THUMBNAIL_HTML_IMAGE_WINDOW_HEIGHT);
- }
-
- public Integer getThumbnailHtmlImageWindowHeightAsInteger() {
- return getAsInteger(FessConfig.THUMBNAIL_HTML_IMAGE_WINDOW_HEIGHT);
- }
-
public String getThumbnailHtmlImageThumbnailWidth() {
return get(FessConfig.THUMBNAIL_HTML_IMAGE_THUMBNAIL_WIDTH);
}
@@ -8652,8 +8600,6 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_MIN_WIDTH, "100");
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_MIN_HEIGHT, "100");
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_MAX_ASPECT_RATIO, "3.0");
- defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_WINDOW_WIDTH, "1200");
- defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_WINDOW_HEIGHT, "800");
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_THUMBNAIL_WIDTH, "100");
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_THUMBNAIL_HEIGHT, "100");
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_FORMAT, "png");
diff --git a/src/main/resources/fess_config.properties b/src/main/resources/fess_config.properties
index 0b173299f..d9e8af8d4 100644
--- a/src/main/resources/fess_config.properties
+++ b/src/main/resources/fess_config.properties
@@ -538,8 +538,6 @@ searchlog.agg.shard.size=-1
thumbnail.html.image.min.width=100
thumbnail.html.image.min.height=100
thumbnail.html.image.max.aspect.ratio=3.0
-thumbnail.html.image.window.width=1200
-thumbnail.html.image.window.height=800
thumbnail.html.image.thumbnail.width=100
thumbnail.html.image.thumbnail.height=100
thumbnail.html.image.format=png