File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Adjust/adjust/src/main/java/com/adjust/sdk Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,13 +108,13 @@ private static boolean checkEnvironment(String environment) {
108
108
return false ;
109
109
}
110
110
111
- if (environment == AdjustConfig .ENVIRONMENT_SANDBOX ) {
111
+ if (environment . equals ( AdjustConfig .ENVIRONMENT_SANDBOX ) ) {
112
112
logger .Assert ("SANDBOX: Adjust is running in Sandbox mode. " +
113
113
"Use this setting for testing. " +
114
114
"Don't forget to set the environment to `production` before publishing!" );
115
115
return true ;
116
116
}
117
- if (environment == AdjustConfig .ENVIRONMENT_PRODUCTION ) {
117
+ if (environment . equals ( AdjustConfig .ENVIRONMENT_PRODUCTION ) ) {
118
118
logger .Assert (
119
119
"PRODUCTION: Adjust is running in Production mode. " +
120
120
"Use this setting only for the build that you want to publish. " +
You can’t perform that action at this time.
0 commit comments