• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revision208 (tree)
Time2016-01-22 20:09:31
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/fwBatch/src/batch/base/BatchProcessorImpl.java (revision 207)
+++ trunk/framework/fwBatch/src/batch/base/BatchProcessorImpl.java (revision 208)
@@ -113,8 +113,8 @@
113113 } catch (final PhysicalException ex) {
114114 LogManager.getLogger().info(ex.getMessage());
115115 return Batch.RET_FAILED;
116- } catch (final Throwable th) {
117- ThrowableUtil.error(th);
116+ } catch (final Throwable t) {
117+ ThrowableUtil.error(t);
118118 return Batch.RET_FAILED;
119119 }
120120 }
--- trunk/framework/fwBatch/src/batch/base/BatchStatus.java (revision 207)
+++ trunk/framework/fwBatch/src/batch/base/BatchStatus.java (revision 208)
@@ -111,8 +111,8 @@
111111 LogManager.getLogger().info(ex.getMessage());
112112 printUsage(BatchStatus.class.getName());
113113 ret = Batch.RET_PARAM_ERROR;
114- } catch (final Throwable th) {
115- ThrowableUtil.error(th);
114+ } catch (final Throwable t) {
115+ ThrowableUtil.error(t);
116116 ret = Batch.RET_ENV_ERROR;
117117 }
118118
@@ -529,6 +529,7 @@
529529 public int getInterval() {
530530 return this.interval;
531531 }
532+
532533 /**
533534 * @param val The interval to set.
534535 */
@@ -542,6 +543,7 @@
542543 public String getJobId() {
543544 return this.jobId;
544545 }
546+
545547 /**
546548 * @param val The jobId to set.
547549 */
@@ -555,6 +557,7 @@
555557 public String getJobName() {
556558 return this.jobName;
557559 }
560+
558561 /**
559562 * @param val The jobName to set.
560563 */
@@ -568,6 +571,7 @@
568571 public int getStatus() {
569572 return this.status;
570573 }
574+
571575 /**
572576 * @param val The status to set.
573577 */
@@ -588,6 +592,7 @@
588592 public String getUid() {
589593 return Objects.toString(this.uid, this.jobId);
590594 }
595+
591596 /**
592597 * @param val the uid to set
593598 */