Skip to content

Commit ef5a4a6

Browse files
committed
Spacepolice
Add a space between if and the parenthesis
1 parent 9ce14cc commit ef5a4a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/gui/RecorderDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ public void keyTyped(KeyEvent e) {
230230
@Override
231231
public void keyReleased(KeyEvent e) {
232232
String fieldName = e.getComponent().getName();
233-
if(fieldName.equals(ProxyControlGui.PREFIX_HTTP_SAMPLER_NAME)) {
233+
if (fieldName.equals(ProxyControlGui.PREFIX_HTTP_SAMPLER_NAME)) {
234234
recorderGui.setPrefixHTTPSampleName(prefixHTTPSampleName.getText());
235235
} else if (fieldName.equals(ProxyControlGui.HTTP_SAMPLER_NAME_FORMAT)) {
236236
recorderGui.setSampleNameFormat(sampleNameFormat.getText());
237-
} else if(fieldName.equals(ProxyControlGui.PROXY_PAUSE_HTTP_SAMPLER)) {
237+
} else if (fieldName.equals(ProxyControlGui.PROXY_PAUSE_HTTP_SAMPLER)) {
238238
try {
239239
Long.parseLong(proxyPauseHTTPSample.getText());
240240
} catch (NumberFormatException nfe) {

0 commit comments

Comments
 (0)