]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/utils/UrlEncodedFormData.java
toCamelCase
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / UrlEncodedFormData.java
index 5d69da212cc90b6cc0734a14675678a5964b9fae..73d26ee1a9c01a60b94cb4121fada39a9a701e42 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2018 Damyan Ivanov.
+ * Copyright © 2019 Damyan Ivanov.
  * This file is part of Mobile-Ledger.
  * Mobile-Ledger is free software: you can distribute it and/or modify it
  * under the term of the GNU General Public License as published by
@@ -32,8 +32,8 @@ public class UrlEncodedFormData {
         pairs = new ArrayList<>();
     }
 
-    public void add_pair(String name, String value) {
-        pairs.add(new AbstractMap.SimpleEntry<String,String>(name, value));
+    public void addPair(String name, String value) {
+        pairs.add(new AbstractMap.SimpleEntry<>(name, value));
     }
 
     @NonNull