Skip to content

Commit

Permalink
Merge pull request #499 from vil02/5052_make_some_java_classes_proper…
Browse files Browse the repository at this point in the history
…_utilities

Make some Java classes proper utilities
  • Loading branch information
kalaiyarasiganeshalingam committed Oct 26, 2023
2 parents 7842297 + 360e313 commit 8714c27
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
org = "ballerina"
name = "task"
version = "2.5.0"
version = "2.5.1"
authors = ["Ballerina"]
keywords = ["task", "job", "schedule"]
repository = "https://github.com/ballerina-platform/module-ballerina-task"
Expand All @@ -15,8 +15,8 @@ graalvmCompatible = true
[[platform.java17.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "task-native"
version = "2.5.0"
path = "../native/build/libs/task-native-2.5.0.jar"
version = "2.5.1"
path = "../native/build/libs/task-native-2.5.1-SNAPSHOT.jar"

[[platform.java17.dependency]]
path = "./lib/quartz-2.3.2.jar"
2 changes: 1 addition & 1 deletion ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ modules = [
[[package]]
org = "ballerina"
name = "task"
version = "2.5.0"
version = "2.5.1"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "lang.runtime"},
Expand Down
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Changed
[Enable non-quartz logs](https://github.com/ballerina-platform/ballerina-standard-library/issues/4282)
- [Enable non-quartz logs](https://github.com/ballerina-platform/ballerina-standard-library/issues/4282)
- [Make some of the Java classes proper utility classes](https://github.com/ballerina-platform/ballerina-standard-library/issues/5052)

## [2.3.0] - 2022-09-29

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
*
* @since 0.1.4
*/
public class TaskActions {
public final class TaskActions {

private TaskActions() {}

private static final int bound = 1000000;
private static final String value = "1000";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@
*
* @since 0.995.0
*/
public class Utils {
public final class Utils {

private Utils() {}

private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS");

Expand Down

0 comments on commit 8714c27

Please sign in to comment.