Skip to content

Commit

Permalink
Component final release
Browse files Browse the repository at this point in the history
Code cleanup
  • Loading branch information
jlolling committed Aug 17, 2022
1 parent 642d16b commit 20fae90
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
sorts = "null";
}
String timeout = ElementParameterParser.getValue(node, "__TIMEOUT_IN_SEC__");
String timeOffset = ElementParameterParser.getValue(node, "__TIME_OFFSET__");
String fetchSize = ElementParameterParser.getValue(node, "__FETCH_SIZE__");
String maxAttempts = ElementParameterParser.getValue(node, "__MAX_ATTEMPTS__");
String numberFormatLocale = ElementParameterParser.getValue(node, "__NUMBERFORMAT_LOCALE__");
Expand Down Expand Up @@ -89,9 +88,6 @@
<% if (timeout != null && timeout.trim().isEmpty() == false) { %>
<%=cid%>.setTimeoutInSeconds(<%=timeout%>);
<% } %>
<% if (timeOffset != null && timeOffset.trim().isEmpty() == false) { %>
<%=cid%>.setTimeMillisOffsetToPast(<%=timeOffset%>);
<% } %>
<% if (fetchSize != null && fetchSize.trim().isEmpty() == false) { %>
<%=cid%>.setFetchSize(<%=fetchSize%>);
<% } %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@
<PARAMETER FIELD="TEXT" NAME="TIMEOUT_IN_SEC" NUM_ROW="10">
<DEFAULT>240</DEFAULT>
</PARAMETER>
<PARAMETER FIELD="TEXT" NAME="TIME_OFFSET" NUM_ROW="15">
<DEFAULT>10000</DEFAULT>
</PARAMETER>
<PARAMETER FIELD="TEXT" NAME="FETCH_SIZE" NUM_ROW="20">
<DEFAULT>1000</DEFAULT>
</PARAMETER>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ERROR_MESSAGE.NAME=Error Message
NUMBERFORMAT_LOCALE.NAME=Locale for Numbers (2-char-ISO code)
TOTAL_AFFECTED_ROWS.NAME=Total affected rows used to calculate result
KEEP_CLIENT.NAME=Keep client for repeated processing
TIME_OFFSET.NAME=Static Time Offset (to past)
FETCH_SIZE.NAME=Max. rows (empty or 0 for no limit which means also no pagination)
DIE_ON_ERROR.NAME=Die on Error
NORMALIZED_OUTPUT.NAME=Normalized output flows
Expand Down

0 comments on commit 20fae90

Please sign in to comment.