(String s)
| 924 | } |
| 925 | |
| 926 | protected static Schema staticSchemaGen(String s) { |
| 927 | try { |
| 928 | if (s.equals("")) { |
| 929 | LOG.warn("No Schema present in SchemaTuple generated class"); |
| 930 | return new Schema(); |
| 931 | } |
| 932 | return (Schema) ObjectSerializer.deserialize(s); |
| 933 | } catch (IOException e) { |
| 934 | throw new RuntimeException("Unable to deserialize serialized Schema: " + s, e); |
| 935 | } |
| 936 | } |
| 937 | |
| 938 | public void setAndCatch(Tuple t) { |
| 939 | try { |
nothing calls this directly
no test coverage detected