Skip to content

Instantly share code, notes, and snippets.

@truefedex
Created October 13, 2017 17:10
Show Gist options
  • Save truefedex/53b0ce9831aecb1f0786ba04a3a4feb5 to your computer and use it in GitHub Desktop.
Save truefedex/53b0ce9831aecb1f0786ba04a3a4feb5 to your computer and use it in GitHub Desktop.
holder
package com.brainwave_research_institute.app.brainwave.util;
/**
* Created by fedex on 13.10.17.
*/
public class Holder<T> {
public T value;
public Holder(T value) {
this.value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment