Skip to content

Commit fbd0b21

Browse files
author
Varun Rathore
committed
fix related to comment changes
1 parent 46ddda9 commit fbd0b21

14 files changed

+21
-114
lines changed

src/main/java/com/google/firebase/remoteconfig/AndCondition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
/*
3-
* Copyright 2020 Google LLC
3+
* Copyright 2025 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

src/main/java/com/google/firebase/remoteconfig/FirebaseRemoteConfigClient.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,4 @@ ListVersionsResponse listVersions(
4242
ListVersionsOptions options) throws FirebaseRemoteConfigException;
4343

4444
String getServerTemplate() throws FirebaseRemoteConfigException;
45-
46-
}
45+
}

src/main/java/com/google/firebase/remoteconfig/FirebaseRemoteConfigClientImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,4 +300,4 @@ private RemoteConfigServiceErrorResponse safeParse(String response) {
300300
return new RemoteConfigServiceErrorResponse();
301301
}
302302
}
303-
}
303+
}

src/main/java/com/google/firebase/remoteconfig/KeysAndValues.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
/*
3-
* Copyright 2020 Google LLC
3+
* Copyright 2025 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

src/main/java/com/google/firebase/remoteconfig/OneOfCondition.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Google LLC
2+
* Copyright 2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -98,4 +98,4 @@ OneOfConditionResponse toOneOfConditionResponse() {
9898
}
9999
return oneOfConditionResponse;
100100
}
101-
}
101+
}

src/main/java/com/google/firebase/remoteconfig/OrCondition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
/*
3-
* Copyright 2020 Google LLC
3+
* Copyright 2025 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

src/main/java/com/google/firebase/remoteconfig/ServerCondition.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Google LLC
2+
* Copyright 2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -86,4 +86,4 @@ public boolean equals(Object o) {
8686
public int hashCode() {
8787
return Objects.hash(name, serverCondition);
8888
}
89-
}
89+
}

src/main/java/com/google/firebase/remoteconfig/ServerConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Google LLC
2+
* Copyright 2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -99,4 +99,4 @@ private Value getValue(String key) {
9999
}
100100
return new Value(ValueSource.STATIC);
101101
}
102-
}
102+
}

src/main/java/com/google/firebase/remoteconfig/ServerTemplate.java

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Google LLC
2+
* Copyright 2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,20 +27,10 @@ public interface Builder {
2727

2828
ServerTemplate build();
2929
}
30-
/**
31-
* Proccess the template data with a condition evaluator
32-
* based on the provided context.
33-
*/
34-
ServerConfig evaluate(KeysAndValues context) throws FirebaseRemoteConfigException;
35-
/**
36-
* Proccess the template data without context.
37-
*/
38-
ServerConfig evaluate() throws FirebaseRemoteConfigException;
39-
4030
/**
4131
* Fetches and caches the current active version of the project.
4232
*/
4333
ApiFuture<Void> load() throws FirebaseRemoteConfigException;
4434

4535
String toJson();
46-
}
36+
}

src/main/java/com/google/firebase/remoteconfig/ServerTemplateData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
/*
3-
* Copyright 2020 Google LLC
3+
* Copyright 2025 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)