Commit f2202c00 by Kim Gyeongeun

compileエラー対応

parent df4f34d3
...@@ -8,12 +8,12 @@ import java.util.Properties; ...@@ -8,12 +8,12 @@ import java.util.Properties;
import javax.servlet.ServletContext; import javax.servlet.ServletContext;
import jp.agentec.sinaburocast.common.util.PropertyUtil;
import org.apache.log4j.Logger; import org.apache.log4j.Logger;
import org.apache.velocity.exception.ResourceNotFoundException; import org.apache.velocity.exception.ResourceNotFoundException;
import org.apache.velocity.tools.generic.ValueParser; import org.apache.velocity.tools.generic.ValueParser;
import jp.agentec.sinaburocast.common.util.PropertyUtil;
/** /**
* SinaburoCast.properties用VelocityTools. * SinaburoCast.properties用VelocityTools.
* *
...@@ -109,7 +109,7 @@ public class SinaburocastPropertiesTool { ...@@ -109,7 +109,7 @@ public class SinaburocastPropertiesTool {
* いくつかの要素について、設定ファイルになかった場合のデフォルト値を設定する * いくつかの要素について、設定ファイルになかった場合のデフォルト値を設定する
*/ */
private void populateDefaultValues() { private void populateDefaultValues() {
String contextPath = _application.getContextPath(); String contextPath = _application.getContextPath();
if (contextPath == null) contextPath = ""; if (contextPath == null) contextPath = "";
if (_application.getAttribute(PropertyKey.CSSPATH) == null) { if (_application.getAttribute(PropertyKey.CSSPATH) == null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment