Skip to content

Commit a34b0d4

Browse files
committed
fixes a few javadoc complaints
1 parent 0cf0071 commit a34b0d4

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

src/main/java/com/thedeanda/ajaxproxy/MergeCode.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,6 @@ public MergeCode() {
3636

3737
}
3838

39-
/**
40-
*
41-
* @param filePath
42-
* input file with lines that contain filenames to merge
43-
* @param minify
44-
* @param jsMode
45-
* true when minifying javascript, false for css
46-
* @return
47-
* @throws Exception
48-
*/
4939
public String mergeContents() throws Exception {
5040
StringBuffer sb = new StringBuffer();
5141
if (mode == MergeMode.HTML_JSON) {

src/main/java/com/thedeanda/ajaxproxy/ui/MainPanel.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,11 @@ private void fireProxyStopped() {
168168
}
169169
}
170170

171-
/** updates the config from the ui data */
171+
/**
172+
* updates the config from the ui data
173+
*
174+
* @return the json object representing the config
175+
*/
172176
public JsonObject getConfig() {
173177
JsonObject json = config;
174178
json.put("port", generalPanel.getPort());

src/main/java/org/fife/ui/hex/swing/HexEditor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ public void replaceBytes(int offset, int len, byte[] bytes) {
485485

486486

487487
/**
488-
* Replaces the currently selected bytes (if >=1) with the specified
488+
* Replaces the currently selected bytes (if greater or equal to 1) with the specified
489489
* new bytes.
490490
*
491491
* @param bytes The new bytes. If this is <code>null</code> or an empty

src/main/java/org/slf4j/impl/ListenerSupportedSimpleLogger.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,7 @@ private void formatAndLog(int level, String format, Object... arguments) {
488488
*
489489
* @param logLevel
490490
* is this level enabled?
491+
* @return true if level is enabled
491492
*/
492493
protected boolean isLevelEnabled(int logLevel) {
493494
// log level are numerically ordered so can use simple numeric

0 commit comments

Comments
 (0)