提交 004b2313 编写于 作者: J Josh Soref

Dropping unnecessary semicolons

上级 adcfcedd
......@@ -226,8 +226,8 @@ public class EnvVars extends TreeMap<String,String> {
}
return refereeSetMap.get(n);
}
};
}
private final Comparator<? super String> comparator;
@Nonnull
......
......@@ -77,5 +77,5 @@ public class ClockMonitor extends NodeMonitor {
public NodeMonitor newInstance(StaplerRequest req, JSONObject formData) throws FormException {
return new ClockMonitor();
}
};
}
}
......@@ -106,7 +106,7 @@ public class SwapSpaceMonitor extends NodeMonitor {
public NodeMonitor newInstance(StaplerRequest req, JSONObject formData) throws FormException {
return new SwapSpaceMonitor();
}
};
}
/**
* Obtains the string that represents the architecture.
......
......@@ -902,8 +902,8 @@ public class HudsonPrivateSecurityRealm extends AbstractPasswordBasedSecurityRea
return password.startsWith(JBCRYPT_HEADER) && JBCRYPT_ENCODER.isHashValid(password.substring(JBCRYPT_HEADER.length()));
}
};
}
public static final MultiPasswordEncoder PASSWORD_ENCODER = new MultiPasswordEncoder();
@Extension @Symbol("local")
......
......@@ -110,5 +110,5 @@ public final class LegacySecurityRealm extends SecurityRealm implements Authenti
public String getDisplayName() {
return Messages.LegacySecurityRealm_Displayname();
}
};
}
}
......@@ -345,7 +345,6 @@ public class ChunkedInputStream extends InputStream {
// read and discard the remainder of the message
byte[] buffer = new byte[1024];
while (inStream.read(buffer) >= 0) {
;
}
}
}
......@@ -104,9 +104,10 @@ public class SHELLEXECUTEINFO extends Structure {
public static class ByReference extends DUMMYUNIONNAME_union implements Structure.ByReference {
};
}
public static class ByValue extends DUMMYUNIONNAME_union implements Structure.ByValue {
};
};
}
}
}
......@@ -95,7 +95,7 @@ public class HistoryWidget<O extends ModelObject,T> extends Widget {
this.owner = owner;
this.newerThan = getPagingParam(currentRequest, "newer-than");
this.olderThan = getPagingParam(currentRequest, "older-than");
this.searchString = currentRequest.getParameter("search");;
this.searchString = currentRequest.getParameter("search");
}
/**
......
......@@ -1886,9 +1886,8 @@ public class DomainValidator implements Serializable {
INFRASTRUCTURE_RO,
/** Get a copy of the local table */
LOCAL_RO
;
};
}
// For use by unit test code only
static synchronized void clearTLDOverrides() {
inUse = false;
......
......@@ -62,6 +62,6 @@ public class Timer {
/**
* Do not create this.
*/
private Timer() {};
private Timer() {}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册