Skip to content

Instantly share code, notes, and snippets.

View cristobalmoralesm's full-sized avatar

Cristobal Morales cristobalmoralesm

  • Lottoland
  • Malaga, Spain
View GitHub Profile
package jp.s5r;
import java.util.HashMap;
import java.util.Map;
public class MapBuilder<K, V> {
private Object[] objects;
public MapBuilder(Object[] args) {
if (args.length % 2 != 0) {