• R/O
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

OmegaT の背景に画像を表示します。


Commit MetaInfo

Revision18 (tree)
Time2014-05-10 14:27:43
Authoryu-tang

Log Message

static の付け忘れを修正

Change Summary

Incremental Difference

--- trunk/src/jp/sourceforge/users/yutang/omegat/plugin/moenizer/MoeUtil.java (revision 17)
+++ trunk/src/jp/sourceforge/users/yutang/omegat/plugin/moenizer/MoeUtil.java (revision 18)
@@ -112,13 +112,13 @@
112112 }
113113 }
114114
115- public boolean isURLShortcut(File file) {
115+ public static boolean isURLShortcut(File file) {
116116 String name = file.getName();
117117 return (!name.startsWith(".")
118118 && RE_HAS_URL_SHORTCUT_EXTENSION.matcher(name).matches());
119119 }
120120
121- public boolean isImage(File file) {
121+ public static boolean isImage(File file) {
122122 String name = file.getName();
123123 return (!name.startsWith(".")
124124 && RE_HAS_IMAGE_EXTENSION.matcher(name).matches());