comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/WriteLocalNode.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents 31da1716950f
children 5b08b0f4d338
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
75 slot.setType(value.getClass()); 75 slot.setType(value.getClass());
76 frame.updateToLatestVersion(); 76 frame.updateToLatestVersion();
77 } 77 }
78 78
79 @Override 79 @Override
80 protected FrameSlotNode specialize(Class< ? > clazz) { 80 protected FrameSlotNode specialize(Class<?> clazz) {
81 return WriteLocalNodeFactory.createSpecialized(this, clazz); 81 return WriteLocalNodeFactory.createSpecialized(this, clazz);
82 } 82 }
83 83
84 } 84 }