comparison src/luan/impl/TableField.java @ 775:1a68fc55a80c

simplify dir structure
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 26 Aug 2016 14:36:40 -0600
parents core/src/luan/impl/TableField.java@e2be71451d04
children
comparison
equal deleted inserted replaced
774:3e30cf310e56 775:1a68fc55a80c
1 package luan.impl;
2
3
4 public final class TableField {
5 final Object key;
6 final Object value;
7
8 public TableField(Object key,Object value) {
9 this.key = key;
10 this.value = value;
11 }
12 }