Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.classpath
.project
.settings/

bin/
gen/
lint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public static PebbleDictionary fromJson(String jsonString) throws JSONException
return d;
}

private static JSONObject serializeTuple(PebbleTuple t) throws JSONException {
public static JSONObject serializeTuple(PebbleTuple t) throws JSONException {
JSONObject j = new JSONObject();
j.put(KEY, t.key);
j.put(TYPE, t.type.getName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @author zulak@getpebble.com
*/
final class PebbleTuple {
public final class PebbleTuple {

private static final Charset UTF8 = Charset.forName("UTF-8");

Expand Down