Skip to content

Commit

Permalink
fixes a few javadoc complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeanda committed Nov 19, 2015
1 parent 0cf0071 commit a34b0d4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 12 deletions.
10 changes: 0 additions & 10 deletions src/main/java/com/thedeanda/ajaxproxy/MergeCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,6 @@ public MergeCode() {

}

/**
*
* @param filePath
* input file with lines that contain filenames to merge
* @param minify
* @param jsMode
* true when minifying javascript, false for css
* @return
* @throws Exception
*/
public String mergeContents() throws Exception {
StringBuffer sb = new StringBuffer();
if (mode == MergeMode.HTML_JSON) {
Expand Down
6 changes: 5 additions & 1 deletion src/main/java/com/thedeanda/ajaxproxy/ui/MainPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,11 @@ private void fireProxyStopped() {
}
}

/** updates the config from the ui data */
/**
* updates the config from the ui data
*
* @return the json object representing the config
*/
public JsonObject getConfig() {
JsonObject json = config;
json.put("port", generalPanel.getPort());
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fife/ui/hex/swing/HexEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ public void replaceBytes(int offset, int len, byte[] bytes) {


/**
* Replaces the currently selected bytes (if >=1) with the specified
* Replaces the currently selected bytes (if greater or equal to 1) with the specified
* new bytes.
*
* @param bytes The new bytes. If this is <code>null</code> or an empty
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,7 @@ private void formatAndLog(int level, String format, Object... arguments) {
*
* @param logLevel
* is this level enabled?
* @return true if level is enabled
*/
protected boolean isLevelEnabled(int logLevel) {
// log level are numerically ordered so can use simple numeric
Expand Down

0 comments on commit a34b0d4

Please sign in to comment.