Skip to content

Commit

Permalink
add version to deprecation tag, apache#4158
Browse files Browse the repository at this point in the history
sonar fix
  • Loading branch information
hansva committed Jul 30, 2024
1 parent c1e6035 commit ef5205a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/src/main/java/org/apache/hop/core/logging/LogLevel.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,11 @@ public String getDescription() {
}

/**
* Return the log level for a certain log level code
*
* @deprecated Return the log level for a certain log level code
* @param code the code to look for
* @return the log level or BASIC if nothing matches.
*/
@Deprecated
@Deprecated(since = "2.10")
public static LogLevel getLogLevelForCode(String code) {
return IEnumHasCode.lookupCode(LogLevel.class, code, LogLevel.BASIC);
}
Expand Down

0 comments on commit ef5205a

Please sign in to comment.