Skip to content

Instantly share code, notes, and snippets.

View holograph's full-sized avatar

Tomer Gabel holograph

View GitHub Profile
@holograph
holograph / SquerylSyntaxIssues.scala
Created August 12, 2012 10:58
Additional sample code for Squeryl highlighting issues (followup from SCL-3460)
package com.tomergabel.examples
import org.squeryl.PrimitiveTypeMode._
import org.squeryl.{Session, SessionFactory, KeyedEntity, Schema}
import java.sql.Timestamp
/**
* Created by tomer on 7/2/12.
*/
@holograph
holograph / Derived.java
Created July 10, 2012 15:36
IntelliJ IDEA Scala bug example: plugin does not propagate @throws annotation
package com.tomergabel.examples;
/**
* Created by tomer on 7/10/12.
*/
public class Derived implements Superclass {
public void doSomething() throws Exception {
}
}