Skip to content

Commit fae0f82

Browse files
Merge pull request #130 from bugsnag/config-fix
Remove unnecessary @configuration annotation
2 parents a32f17f + 7b3c0bc commit fae0f82

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.4.4 (2019-01-15)
4+
5+
* Remove unnecessary `@Configuration` annotation
6+
[#130](https://github.com/bugsnag/bugsnag-java/pull/130)
7+
38
## 3.4.3 (2019-01-07)
49

510
* Support other methods of configuring a TaskScheduler when setting ErrorHandler on scheduled tasks

bugsnag-spring/src/main/java/com/bugsnag/ScheduledTaskBeanLocator.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@
1010
import org.springframework.beans.factory.config.NamedBeanHolder;
1111
import org.springframework.context.ApplicationContext;
1212
import org.springframework.context.ApplicationContextAware;
13-
import org.springframework.context.annotation.Configuration;
1413
import org.springframework.scheduling.TaskScheduler;
1514
import org.springframework.scheduling.annotation.ScheduledAnnotationBeanPostProcessor;
1615

1716
import java.util.concurrent.ScheduledExecutorService;
1817

19-
@Configuration
2018
class ScheduledTaskBeanLocator implements ApplicationContextAware {
2119

2220
private ApplicationContext beanFactory;

bugsnag/src/main/java/com/bugsnag/Notifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class Notifier {
66

77
private static final String NOTIFIER_NAME = "Bugsnag Java";
8-
private static final String NOTIFIER_VERSION = "3.4.3";
8+
private static final String NOTIFIER_VERSION = "3.4.4";
99
private static final String NOTIFIER_URL = "https://github.com/bugsnag/bugsnag-java";
1010

1111
private String notifierName = NOTIFIER_NAME;

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=3.4.3
1+
version=3.4.4
22
group=com.bugsnag
33

44
# Default properties

0 commit comments

Comments
 (0)