Skip to content

Instantly share code, notes, and snippets.

@hackjutsu
Created May 20, 2019 05:36
Show Gist options
  • Select an option

  • Save hackjutsu/bddb88583e6cac5d63077137d3335487 to your computer and use it in GitHub Desktop.

Select an option

Save hackjutsu/bddb88583e6cac5d63077137d3335487 to your computer and use it in GitHub Desktop.
[medium snippets] #medium #designPattern #FacadePattern
public class HardDrive {
public byte[] read(long lba, int size) {
System.out.println("HardDrive: reading...");
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment